Conditions | 3 |
Paths | 3 |
Total Lines | 10 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
39 | public function process(Generator $filesFinder, ProcessFactory $processFactory): void |
||
40 | { |
||
41 | foreach ($filesFinder as $file) { |
||
42 | $result = new Result($file); |
||
43 | |||
44 | foreach ($processFactory->createProcesses($file) as $process) { |
||
45 | $this->executeProcess($process, $result); |
||
46 | } |
||
47 | |||
48 | $this->broker->notify(new AfterFileAnalysisEvent($result)); |
||
49 | } |
||
67 |