DateTimeConstraintAware.php 317 B

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