Conditions | 3 |
Paths | 3 |
Total Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 3.0261 |
Changes | 0 |
1 | <?php |
||
39 | 3 | public function set($name, $text) |
|
40 | { |
||
41 | 3 | $path = $this->getFullPath($name); |
|
42 | 3 | $dir = dirname($path); |
|
43 | 3 | if (!is_dir($dir)) { |
|
44 | 3 | if (!mkdir($dir, 0755, true)) { |
|
45 | throw new \Exception('Could not create storage'); |
||
46 | } |
||
47 | } |
||
48 | |||
49 | 3 | return file_put_contents($path, $text); |
|
50 | } |
||
51 | |||
59 |