Passed
Pull Request — master (#50)
by Jitendra
01:44
created
src/Application.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -182,7 +182,7 @@
 block discarded – undo
182 182
         $argv += [null, null, null];
183 183
 
184 184
         return
185
-             // cmd
185
+                // cmd
186 186
             $this->commands[$argv[1]]
187 187
             // cmd alias
188 188
             ?? $this->commands[$this->aliases[$argv[1]] ?? null]
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
         $this->version = $version;
46 46
 
47 47
         // @codeCoverageIgnoreStart
48
-        $this->onExit = $onExit ?? function ($exitCode = 0) {
48
+        $this->onExit = $onExit ?? function($exitCode = 0) {
49 49
             exit($exitCode);
50 50
         };
51 51
         // @codeCoverageIgnoreEnd
Please login to merge, or discard this patch.
src/Input/Command.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -74,14 +74,14 @@
 block discarded – undo
74 74
     {
75 75
         $this->option('-h, --help', 'Show help')->on([$this, 'showHelp']);
76 76
         $this->option('-V, --version', 'Show version')->on([$this, 'showVersion']);
77
-        $this->option('-v, --verbosity', 'Verbosity level', null, 0)->on(function () {
77
+        $this->option('-v, --verbosity', 'Verbosity level', null, 0)->on(function() {
78 78
             $this->set('verbosity', ($this->verbosity ?? 0) + 1);
79 79
 
80 80
             return false;
81 81
         });
82 82
 
83 83
         // @codeCoverageIgnoreStart
84
-        $this->onExit(function ($exitCode = 0) {
84
+        $this->onExit(function($exitCode = 0) {
85 85
             exit($exitCode);
86 86
         });
87 87
         // @codeCoverageIgnoreEnd
Please login to merge, or discard this patch.
src/Input/Parser.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
     {
106 106
         $value = \substr($nextArg, 0, 1) === '-' ? null : $nextArg;
107 107
 
108
-        if (null === $option  = $this->optionFor($arg)) {
108
+        if (null === $option = $this->optionFor($arg)) {
109 109
             return $this->handleUnknown($arg, $value);
110 110
         }
111 111
 
@@ -200,7 +200,7 @@  discard block
 block discarded – undo
200 200
     protected function validate()
201 201
     {
202 202
         /** @var Parameter[] $missingItems */
203
-        $missingItems = \array_filter($this->_options + $this->_arguments, function ($item) {
203
+        $missingItems = \array_filter($this->_options + $this->_arguments, function($item) {
204 204
             /* @var Parameter $item */
205 205
             return $item->required() && \in_array($this->_values[$item->attributeName()], [null, []]);
206 206
         });
Please login to merge, or discard this patch.
src/Helper/OutputHelper.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -144,7 +144,7 @@  discard block
 block discarded – undo
144 144
      */
145 145
     public function showCommandsHelp(array $commands, string $header = '', string $footer = ''): self
146 146
     {
147
-        $this->maxCmdName = $commands ? \max(\array_map(function (Command $cmd) {
147
+        $this->maxCmdName = $commands ? \max(\array_map(function(Command $cmd) {
148 148
             return \strlen($cmd->name());
149 149
         }, $commands)) : 0;
150 150
 
@@ -207,7 +207,7 @@  discard block
 block discarded – undo
207 207
         }
208 208
 
209 209
         $maxlen = \max($lines) + 4;
210
-        $usage  = \preg_replace_callback('~ ## ~', function () use (&$lines, $maxlen) {
210
+        $usage  = \preg_replace_callback('~ ## ~', function() use (&$lines, $maxlen) {
211 211
             return \str_pad('# ', $maxlen - \array_shift($lines), ' ', \STR_PAD_LEFT);
212 212
         }, $usage);
213 213
 
@@ -226,11 +226,11 @@  discard block
 block discarded – undo
226 226
      */
227 227
     protected function sortItems(array $items, &$max = 0): array
228 228
     {
229
-        $max = \max(\array_map(function ($item) {
229
+        $max = \max(\array_map(function($item) {
230 230
             return \strlen($this->getName($item));
231 231
         }, $items));
232 232
 
233
-        \uasort($items, function ($a, $b) {
233
+        \uasort($items, function($a, $b) {
234 234
             /* @var Parameter $b */
235 235
             /* @var Parameter $a */
236 236
             return $a->name() <=> $b->name();
Please login to merge, or discard this patch.