| Total Complexity | 2 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | class DigraphPrinter |
||
| 15 | { |
||
| 16 | /** @var TemplateEngine */ |
||
| 17 | private $engine; |
||
| 18 | |||
| 19 | /** @var DigraphStyle */ |
||
| 20 | private $style; |
||
| 21 | |||
| 22 | 108 | public function __construct(TemplateEngine $engine = null, DigraphStyle $style = null) |
|
| 26 | 108 | } |
|
| 27 | |||
| 28 | 93 | public function toDot(Digraph $digraph): string |
|
| 36 |