| 123456789101112131415161718 |
- <?php
- declare(strict_types=1);
- namespace App\Validator\Organization;
- use Symfony\Component\Validator\Constraint;
- #[\Attribute]
- class OrganizationAddressPostal extends Constraint
- {
- public string $message = '{{ type }}_non_unique';
- public function getTargets(): string|array
- {
- return self::CLASS_CONSTRAINT;
- }
- }
|