Test Failed
Push — main ( 6ff002...b6a81f )
by ikechukwu
15:26 queued 07:04
created
src/Console/Commands/MakeTraitCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@  discard block
 block discarded – undo
7 7
 use Symfony\Component\Console\Attribute\AsCommand;
8 8
 use Symfony\Component\Console\Input\InputOption;
9 9
 
10
-#[AsCommand(name: 'make:traitclass')]
10
+#[AsCommand(name: 'make:traitclass') ]
11 11
 class MakeTraitCommand extends GeneratorCommand
12 12
 {
13 13
     /**
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
     protected function getOptions()
97 97
     {
98 98
         return [
99
-            ['force', 'f', InputOption::VALUE_NONE, 'Create the class even if the trait already exists'],
99
+            [ 'force', 'f', InputOption::VALUE_NONE, 'Create the class even if the trait already exists' ],
100 100
         ];
101 101
     }
102 102
 }
Please login to merge, or discard this patch.
src/Console/Commands/MakeEnumCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@  discard block
 block discarded – undo
6 6
 use Symfony\Component\Console\Attribute\AsCommand;
7 7
 use Symfony\Component\Console\Input\InputOption;
8 8
 
9
-#[AsCommand(name: 'make:enumclass')]
9
+#[AsCommand(name: 'make:enumclass') ]
10 10
 class MakeEnumCommand extends GeneratorCommand
11 11
 {
12 12
     /**
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
     protected function getOptions()
96 96
     {
97 97
         return [
98
-            ['force', 'f', InputOption::VALUE_NONE, 'Create the class even if the enum already exists'],
98
+            [ 'force', 'f', InputOption::VALUE_NONE, 'Create the class even if the enum already exists' ],
99 99
         ];
100 100
     }
101 101
 }
Please login to merge, or discard this patch.