Total Complexity | 2 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
22 | #[Attribute(Attribute::TARGET_METHOD | Attribute::TARGET_PROPERTY)] |
||
23 | class ExportField extends AbstractAnnotation |
||
24 | { |
||
25 | |||
26 | /** |
||
27 | * Export label. |
||
28 | * |
||
29 | * @var string|null |
||
30 | */ |
||
31 | public ?string $label = null; |
||
32 | |||
33 | /** |
||
34 | * @param string|array|null $label Export label or annotation parameters. |
||
35 | * |
||
36 | * @throws ReflectionException |
||
37 | */ |
||
38 | public function __construct( |
||
49 |