Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
30 | public function copyFixedReports($reportName) |
||
31 | { |
||
32 | (new FileSystem)->remove($this->reportPaths['fix'] . $reportName); |
||
33 | |||
34 | $report = file_get_contents($this->reportPaths['base'] . $reportName); |
||
35 | file_put_contents($this->reportPaths['fix'] . $reportName, $this->currentPathFixer($report)); |
||
36 | } |
||
37 | } |
||
38 |