Completed
Branch master (c2c6e3)
by Joao
01:48
created
Category
config/config-closure.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,10 +1,10 @@
 block discarded – undo
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
 ];
Please login to merge, or discard this patch.
config/config-test.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@
 block discarded – undo
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
 ];
Please login to merge, or discard this patch.
src/Config.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,10 +13,10 @@
 block discarded – undo
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)) {
Please login to merge, or discard this patch.