Conditions | 2 |
Paths | 2 |
Total Lines | 13 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 2 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
20 | 1 | public function put($file, $data) |
|
21 | { |
||
22 | 1 | $level = error_reporting(0); |
|
23 | 1 | $result = file_put_contents($file, $data); |
|
24 | 1 | error_reporting($level); |
|
25 | |||
26 | 1 | if ($result !== false) { |
|
27 | 1 | return $result; |
|
28 | } |
||
29 | |||
30 | 1 | $error = error_get_last(); |
|
31 | 1 | throw new Exception($error['message']); |
|
32 | } |
||
33 | |||
53 |