| Conditions | 3 |
| Paths | 3 |
| Total Lines | 10 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 12 |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 22 | public static function write($path, $content) |
||
| 23 | { |
||
| 24 | if (file_exists($path)) { |
||
| 25 | $old = file_get_contents($path); |
||
| 26 | if ($old === $content) { |
||
| 27 | return; |
||
| 28 | } |
||
| 29 | } |
||
| 30 | file_put_contents($path, $content); |
||
| 31 | Console::stdout(Console::ansiFormat("written file: $path\n", [Console::FG_YELLOW])); |
||
| 32 | } |
||
| 34 |