| Total Complexity | 1 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 23 | class DotFileGenerator extends DigraphGenerator |
||
| 24 | { |
||
| 25 | /** |
||
| 26 | * The process to generate a class diagram is as follows |
||
| 27 | * |
||
| 28 | * 1. The parser produces a collection of classes and interfaces |
||
| 29 | * 2. The `graphviz` processor takes this collection and creates a digraph using the DOT language |
||
| 30 | * 4. The DOT file is saved to the given path |
||
| 31 | * |
||
| 32 | * @throws \LogicException If the command is missing |
||
| 33 | */ |
||
| 34 | 18 | public function generate(CodeFinder $finder, string $dotFilePath): void |
|
| 43 |