ActivityYearConstraintAware.php 325 B

12345678910111213141516
  1. <?php
  2. declare(strict_types=1);
  3. namespace App\Annotation;
  4. use Attribute;
  5. /**
  6. * Classe ActivityYearConstraintAware qui gère l'annotation pour le Doctrine filter
  7. */
  8. #[Attribute(Attribute::TARGET_CLASS)]
  9. final class ActivityYearConstraintAware
  10. {
  11. public string $startYearFieldName;
  12. public string $endYearFieldName;
  13. }