Completed
Push — master ( 532b1f...89ab0b )
by Mr
04:53 queued 11s
created
src/Config.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -383,7 +383,7 @@
 block discarded – undo
383 383
 
384 384
         // Update list of parameters
385 385
         $this->parameters = array_map(
386
-            static function ($param) use ($name) {
386
+            static function($param) use ($name) {
387 387
                 return ($param['name'] === $name) ? null : $param;
388 388
             },
389 389
             $this->parameters
Please login to merge, or discard this patch.
src/Import.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -82,7 +82,7 @@
 block discarded – undo
82 82
     {
83 83
         $config = new Config();
84 84
         array_map(
85
-            static function ($line) use ($config) {
85
+            static function($line) use ($config) {
86 86
                 if (preg_match('/^(\S+)( (.*))?/', $line, $matches)) {
87 87
                     $config->set($matches[1], $matches[3] ?? true);
88 88
                 }
Please login to merge, or discard this patch.