OrganizationDefaultValue.php 301 B

123456789101112131415
  1. <?php
  2. declare(strict_types=1);
  3. namespace App\Annotation;
  4. use Attribute;
  5. /**
  6. * Classe OrganizationDefaultValue qui gère l'annotation pour mettre l'organization comme valeur par défaut
  7. */
  8. #[Attribute(Attribute::TARGET_CLASS)]
  9. final class OrganizationDefaultValue
  10. {
  11. public string $fieldName;
  12. }