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