Conditions | 3 |
Paths | 3 |
Total Lines | 17 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 9 |
CRAP Score | 3.054 |
Changes | 0 |
1 | <?php |
||
15 | 2 | public function create() |
|
16 | { |
||
17 | 2 | foreach($this->getScriptList() as $script) |
|
18 | { |
||
19 | 2 | $packed = fopen($script, 'a'); |
|
20 | |||
21 | 2 | foreach( ScriptsFileFinder::getInstance()->getFiles() as $file ) |
|
22 | { |
||
23 | fwrite($packed, file_get_contents($file)); |
||
24 | fwrite($packed, "\n"); |
||
25 | 2 | } |
|
26 | |||
27 | 2 | fclose($packed); |
|
28 | |||
29 | 2 | chmod($script, 0664); |
|
30 | 2 | } |
|
31 | 2 | } |
|
32 | |||
45 |