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