Completed
Push — master ( 3a195b...dda2c3 )
by Mr
10:59
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
@@ -97,7 +97,7 @@
 block discarded – undo
97 97
         $config = new Config();
98 98
 
99 99
         array_map(
100
-            static function ($line) use ($config) {
100
+            static function($line) use ($config) {
101 101
                 if (preg_match('/^(\S+)( (.*))?/', $line, $matches)) {
102 102
                     $config->set($matches[1], $matches[3] ?? true);
103 103
                 }
Please login to merge, or discard this patch.