Completed
Push — master ( 505b1e...9b8f3d )
by Joao
10s
created
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/Definition.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -30,10 +30,10 @@
 block discarded – undo
30 30
 
31 31
     private function loadConfig($currentConfig, $env)
32 32
     {
33
-        $file = __DIR__ . '/../../../../config/config-' . $env .  '.php';
33
+        $file = __DIR__ . '/../../../../config/config-' . $env . '.php';
34 34
 
35 35
         if (!file_exists($file)) {
36
-            $file = __DIR__ . '/../config/config-' . $env .  '.php';
36
+            $file = __DIR__ . '/../config/config-' . $env . '.php';
37 37
         }
38 38
 
39 39
         if (!file_exists($file)) {
Please login to merge, or discard this patch.