Passed
Push — master ( 47328e...535bb2 )
by Alexis
02:00
created
src/ConfigurationLoader.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -223,9 +223,9 @@
 block discarded – undo
223 223
      */
224 224
     protected function parseParameters(array &$configuration)
225 225
     {
226
-        array_walk_recursive($configuration, function (&$item) {
226
+        array_walk_recursive($configuration, function(&$item) {
227 227
             if (is_string($item)) {
228
-                $item = preg_replace_callback('/%([0-9A-Za-z._-]+)%/', function ($matches) {
228
+                $item = preg_replace_callback('/%([0-9A-Za-z._-]+)%/', function($matches) {
229 229
                     return isset($this->parameters[$matches[1]]) ? $this->parameters[$matches[1]] : null;
230 230
                 }, $item);
231 231
             }
Please login to merge, or discard this patch.