Test Failed
Pull Request — master (#1)
by
unknown
02:52
created
src/Config.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -321,7 +321,7 @@  discard block
 block discarded – undo
321 321
         $this->parameters[$name] = $value;
322 322
 
323 323
         // Ability to unset param
324
-        if (is_null ($value)) {
324
+        if (is_null($value)) {
325 325
             unset ($this->parameters[$name]);
326 326
         }
327 327
         
@@ -432,7 +432,7 @@  discard block
 block discarded – undo
432 432
 
433 433
         // Update list of parameters
434 434
         $this->parameters = array_map(
435
-            static function ($param) use ($name) {
435
+            static function($param) use ($name) {
436 436
                 return ($param['name'] === $name) ? null : $param;
437 437
             },
438 438
             $this->parameters
Please login to merge, or discard this patch.