| 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 | 40 | { |
|
| 20 | public function __construct(private readonly Definition $definition) |
||
| 21 | { |
||
| 22 | } |
||
| 23 | 24 | ||
| 24 | public function definition(): Definition |
||
| 25 | 24 | { |
|
| 26 | return $this->definition; |
||
| 27 | } |
||
| 28 | 24 | ||
| 29 | public function dotTemplate(): string |
||
| 32 | } |
||
| 33 | 23 | ||
| 34 | public function labelTemplate(): string |
||
| 44 |