| 12345678910111213141516171819 |
- <?php
- declare(strict_types=1);
- namespace App\Attribute;
- /**
- * Classe BillingSettingDefaultValue qui gère l'annotation pour mettre le billing setting de l'organization comme valeur par défaut.
- */
- #[\Attribute(\Attribute::TARGET_CLASS)]
- final class BillingSettingDefaultValue
- {
- public string $fieldName;
- public function __construct(string $fieldName)
- {
- $this->fieldName = $fieldName;
- }
- }
|