Completed
Pull Request — master (#1)
by
unknown
01:58
created
src/Config.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -309,7 +309,7 @@  discard block
 block discarded – undo
309 309
 
310 310
         
311 311
         // Ability to unset param
312
-        if (is_null ($value)) {
312
+        if (is_null($value)) {
313 313
             unset ($this->parameters[$name]);
314 314
         }
315 315
         
@@ -433,7 +433,7 @@  discard block
 block discarded – undo
433 433
 
434 434
         // Update list of parameters
435 435
         $this->parameters = array_map(
436
-            static function ($param) use ($name) {
436
+            static function($param) use ($name) {
437 437
                 return ($param['name'] === $name) ? null : $param;
438 438
             },
439 439
             $this->parameters
Please login to merge, or discard this patch.