@@ -1,10 +1,10 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | 3 | return [ |
4 | - 'closureProp' => function ($param1, $param2) { |
|
4 | + 'closureProp' => function($param1, $param2) { |
|
5 | 5 | return $param1 . ':' . $param2; |
6 | 6 | }, |
7 | - 'closureProp2' => function () { |
|
7 | + 'closureProp2' => function() { |
|
8 | 8 | return 'No Param'; |
9 | 9 | }, |
10 | 10 | ]; |
@@ -3,7 +3,7 @@ |
||
3 | 3 | return [ |
4 | 4 | 'property1' => 'string', |
5 | 5 | 'property2' => true, |
6 | - 'property3' => function () { |
|
6 | + 'property3' => function() { |
|
7 | 7 | return 'calculated'; |
8 | 8 | }, |
9 | 9 | ]; |
@@ -13,10 +13,10 @@ |
||
13 | 13 | |
14 | 14 | public static function inherit($env) |
15 | 15 | { |
16 | - $file = __DIR__ . '/../../../../config/config-' . $env . '.php'; |
|
16 | + $file = __DIR__ . '/../../../../config/config-' . $env . '.php'; |
|
17 | 17 | |
18 | 18 | if (!file_exists($file)) { |
19 | - $file = __DIR__ . '/../config/config-' . $env . '.php'; |
|
19 | + $file = __DIR__ . '/../config/config-' . $env . '.php'; |
|
20 | 20 | } |
21 | 21 | |
22 | 22 | if (!file_exists($file)) { |