← Back
Editing: ItemsForAddress.php
<?php namespace App\Validator; use Symfony\Component\Validator\Constraint; #[\Attribute] final class ItemsForAddress extends Constraint { public string $message = 'Item not allowed for this address solution'; public function getTargets(): string { return self::CLASS_CONSTRAINT; } }
Save File
Cancel