Total Complexity | 4 |
Total Lines | 29 |
Duplicated Lines | 0 % |
Coverage | 85.71% |
Changes | 0 |
1 | <?php |
||
18 | trait NodeAwareDefinitionTrait |
||
19 | { |
||
20 | /** |
||
21 | * @var string |
||
22 | */ |
||
23 | protected $node; |
||
24 | |||
25 | /** |
||
26 | * @return mixed |
||
27 | */ |
||
28 | 10 | public function getNode(): ?string |
|
31 | } |
||
32 | |||
33 | /** |
||
34 | * @param string $node |
||
35 | * |
||
36 | * @return NodeAwareDefinitionInterface |
||
37 | */ |
||
38 | 36 | public function setNode(?string $node): NodeAwareDefinitionInterface |
|
49 |