OrganizationDefaultValue.php 383 B

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