Completed
Push — master ( 46d475...98d04a )
by Raffael
01:48
created
src/Config/Environment.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
         } else {
66 66
             $this->store = $this->variablesToTree($variables);
67 67
         }
68
-   }
68
+    }
69 69
 
70 70
 
71 71
     /**
@@ -120,12 +120,12 @@  discard block
 block discarded – undo
120 120
                 $key = $name[$i];
121 121
 
122 122
                 try {
123
-                  // create new subtree if requested subtree already has a value
124
-                  if (!($tree->$key instanceof Config)) {
125
-                      $tree[$key] = new Config([$tree->$key]);
126
-                  }
123
+                    // create new subtree if requested subtree already has a value
124
+                    if (!($tree->$key instanceof Config)) {
125
+                        $tree[$key] = new Config([$tree->$key]);
126
+                    }
127 127
 
128
-                  $tree = $tree->$key;
128
+                    $tree = $tree->$key;
129 129
                 } catch (Exception $e) {
130 130
                     // set value if last keypart or create subtree
131 131
                     if($i == (count($name) - 1)) {
Please login to merge, or discard this patch.