| Total Complexity | 6 |
| Total Lines | 25 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 17 | final class Node implements HasDotRepresentation |
||
| 18 | { |
||
| 19 | 40 | public function __construct(private readonly Definition $definition) |
|
| 20 | { |
||
| 21 | } |
||
| 22 | |||
| 23 | 24 | public function definition(): Definition |
|
| 24 | { |
||
| 25 | 24 | return $this->definition; |
|
| 26 | } |
||
| 27 | |||
| 28 | 24 | public function dotTemplate(): string |
|
| 31 | } |
||
| 32 | |||
| 33 | 23 | public function labelTemplate(): string |
|
| 44 |