BillingSettingDefaultValue.php 418 B

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