| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 33 | public function generate($path, array $data) |
||
| 34 | { |
||
| 35 | $this->setupDirectory($path); |
||
| 36 | $html = $this->renderReport([ |
||
| 37 | 'analyzedPath' => $data['path'], |
||
| 38 | 'analysis' => $data['result'] |
||
| 39 | ]); |
||
| 40 | |||
| 41 | // Write report html to the file |
||
| 42 | $this->filesystem->put($path . '/index.html', $html); |
||
| 43 | } |
||
| 44 | |||
| 74 |