Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
37 | 6 | public function generate(CodeFinder $finder, string $filePath): void |
|
38 | { |
||
39 | 6 | $this->command()->runningParser(); |
|
40 | 6 | $structure = $this->parser->parse($finder); |
|
41 | 6 | $this->command()->runningProcessor($this->processor); |
|
42 | 6 | $statistics = $this->processor->process($structure); |
|
43 | 6 | $this->command()->savingResult(); |
|
44 | 6 | $this->processor->writeToDisk($statistics, $filePath); |
|
45 | 6 | } |
|
55 | } |