Passed
Push — master ( 79ddfa...1b2fa0 )
by Alexis
02:03
created
src/ConfigurationLoader.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -329,7 +329,7 @@
 block discarded – undo
329 329
     protected function replaceStringPlaceholders(&$string)
330 330
     {
331 331
         if (is_string($string)) {
332
-            $string = preg_replace_callback('/%([0-9A-Za-z._-]+)%/', function ($matches) {
332
+            $string = preg_replace_callback('/%([0-9A-Za-z._-]+)%/', function($matches) {
333 333
                 return isset($this->parameters[$matches[1]]) ? $this->parameters[$matches[1]] : null;
334 334
             }, $string);
335 335
         }
Please login to merge, or discard this patch.