- <?php
- declare(strict_types=1);
- namespace App\Annotation;
- use Attribute;
- /**
- * Classe ActivityYearConstraintAware qui gère l'annotation pour le Doctrine filter
- */
- #[Attribute(Attribute::TARGET_CLASS)]
- final class ActivityYearConstraintAware
- {
- public string $startYearFieldName;
- public string $endYearFieldName;
- }
|