| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 29 | public function generate(CodeFinder $finder, string $dotFilePath): void |
||
| 30 | { |
||
| 31 | $this->command()->runningParser(); |
||
| 32 | $structure = $this->parser->parse($finder); |
||
| 33 | $this->command()->runningProcessor($this->dotProcessor); |
||
| 34 | $dotLanguage = $this->dotProcessor->process($structure); |
||
| 35 | $this->command()->savingResult(); |
||
| 36 | $this->dotProcessor->writeToDisk($dotLanguage, $dotFilePath); |
||
| 37 | } |
||
| 39 |