@@ -7,7 +7,7 @@ discard block |
||
| 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 |
||
| 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 | } |
@@ -6,7 +6,7 @@ discard block |
||
| 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 |
||
| 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 | } |