Passed
Pull Request — main (#20)
by Dimitri
15:28
created
src/Cli/Commands/Generators/Command.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -84,14 +84,14 @@
 block discarded – undo
84 84
         $command = is_string($command) ? $command : 'command:name';
85 85
         $type    = is_string($type) ? $type : 'basic';
86 86
 
87
-        if (! in_array($type, ['basic', 'generator'], true)) {
87
+        if (!in_array($type, ['basic', 'generator'], true)) {
88 88
             // @codeCoverageIgnoreStart
89 89
             $type = $this->choice(lang('CLI.generator.commandType'), ['basic', 'generator'], 'basic');
90 90
             $this->eol();
91 91
             // @codeCoverageIgnoreEnd
92 92
         }
93 93
 
94
-        if (! is_string($group)) {
94
+        if (!is_string($group)) {
95 95
             $group = $type === 'generator' ? config('app.name') . ':Generateurs' : config('app.name');
96 96
         }
97 97
 
Please login to merge, or discard this patch.