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