浏览代码

residence area

Vincent GUFFON 3 年之前
父节点
当前提交
f8a8481bce
共有 1 个文件被更改,包括 15 次插入0 次删除
  1. 15 0
      src/Annotation/BillingSettingDefaultValue.php

+ 15 - 0
src/Annotation/BillingSettingDefaultValue.php

@@ -0,0 +1,15 @@
+<?php
+declare(strict_types=1);
+
+namespace App\Annotation;
+
+use 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;
+}