Completed
Push — master ( 53e552...4d51ed )
by Joschi
04:22
created
src/Admin/Infrastructure/App.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -163,12 +163,12 @@
 block discarded – undo
163 163
             return self::$config;
164 164
         }
165 165
         $keyParts = explode('.', $key);
166
-        $config =& self::$config;
166
+        $config = & self::$config;
167 167
         foreach ($keyParts as $keyPart) {
168 168
             if (!array_key_exists($keyPart, $config)) {
169 169
                 throw new \InvalidArgumentException(sprintf('Invalid config key "%s"', $key), 1466179561);
170 170
             }
171
-            $config =& $config[$keyPart];
171
+            $config = & $config[$keyPart];
172 172
         }
173 173
         return $config;
174 174
     }
Please login to merge, or discard this patch.