@@ -321,7 +321,7 @@ discard block |
||
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 |
||
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 |