Completed
Push — master ( c398b8...7a98a5 )
by Jitendra
10s
created
src/Util/Executable.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@
 block discarded – undo
79 79
 
80 80
         $pathUtil = new Path;
81 81
 
82
-        $proc->run(function ($type, $data) use ($pathUtil) {
82
+        $proc->run(function($type, $data) use ($pathUtil) {
83 83
             if ($this->logFile) {
84 84
                 $pathUtil->writeFile($this->logFile, $data, \FILE_APPEND);
85 85
             }
Please login to merge, or discard this patch.
src/Console/BaseCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@
 block discarded – undo
64 64
 
65 65
     protected function missingOptions(array $config)
66 66
     {
67
-        return \array_filter($this->userOptions(), function ($name) use ($config) {
67
+        return \array_filter($this->userOptions(), function($name) use ($config) {
68 68
             return false !== ($config[$name] ?? null) && \in_array($this->$name, [null, []], true);
69 69
         }, \ARRAY_FILTER_USE_KEY);
70 70
     }
Please login to merge, or discard this patch.