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