Conditions | 3 |
Paths | 4 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
19 | public static function set_debug() { |
||
20 | if(!is_file(self::$file_path)) { |
||
21 | file_put_contents(self::$file_path, self::FALSE); |
||
22 | } |
||
23 | if((integer)file_get_contents(self::$file_path) === 1) { |
||
24 | file_put_contents(self::$file_path, self::FALSE); |
||
25 | } |
||
26 | else { |
||
27 | file_put_contents(self::$file_path, self::TRUE); |
||
28 | } |
||
37 | } |