Total Complexity | 7 |
Total Lines | 41 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
27 | class DataBagAnnotation extends AbstractAnnotation |
||
28 | { |
||
29 | /** |
||
30 | * The data bag name |
||
31 | * |
||
32 | * @var string |
||
33 | */ |
||
34 | protected $sName = ''; |
||
35 | |||
36 | /** |
||
37 | * @inheritDoc |
||
38 | * @throws AnnotationException |
||
39 | */ |
||
40 | public function initAnnotation(array $properties) |
||
47 | } |
||
48 | |||
49 | /** |
||
50 | * @inheritDoc |
||
51 | */ |
||
52 | public function getName(): string |
||
55 | } |
||
56 | |||
57 | /** |
||
58 | * @inheritDoc |
||
59 | */ |
||
60 | public function getValue() |
||
70 |