Conditions | 3 |
Paths | 4 |
Total Lines | 12 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
13 | public static function prepare() |
||
14 | { |
||
15 | $root = dirname(dirname(dirname(dirname(__FILE__)))); |
||
16 | |||
17 | if (!file_exists($root.'/app/configs/global-local.php')) { |
||
18 | fopen($root.'/app/configs/global-local.php', 'w'); |
||
19 | } |
||
20 | |||
21 | if (!file_exists($root.'/app/configs/environments/development.php')) { |
||
22 | fopen($root.'/app/configs/environments/development.php', 'w'); |
||
23 | } |
||
24 | } |
||
25 | } |
||
26 |