Skip to content

Commit 6c98ef2

Browse files
committed
fix: resolve php-cs-fixer report
1 parent ddf5d55 commit 6c98ef2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Maker/MakeEntity.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ public function configureCommand(Command $command, InputConfiguration $inputConf
6363
->addArgument('name', InputArgument::OPTIONAL, sprintf('Class name of the entity to create or update (e.g. <fg=yellow>%s</>)', Str::asClassName(Str::getRandomTerm())))
6464
->addOption('regenerate', null, InputOption::VALUE_NONE, 'Instead of adding new fields, simply generate the methods (e.g. getter/setter) for existing fields')
6565
->addOption('overwrite', null, InputOption::VALUE_NONE, 'Overwrite any existing getter/setter methods')
66-
->addOption('src',null,InputOption::VALUE_OPTIONAL,'source Entity Path','src/Entity/')
66+
->addOption('src', null, InputOption::VALUE_OPTIONAL, 'source Entity Path', 'src/Entity/')
6767
->setHelp(file_get_contents(__DIR__.'/../Resources/help/MakeEntity.txt'))
6868
;
6969

@@ -103,7 +103,7 @@ public function interact(InputInterface $input, ConsoleStyle $io, Command $comma
103103
}
104104

105105
$argument = $command->getDefinition()->getArgument('name');
106-
$question = $this->createEntityClassQuestion($argument->getDescription(),$input->getOption('src'));
106+
$question = $this->createEntityClassQuestion($argument->getDescription(), $input->getOption('src'));
107107
$value = $io->askQuestion($question);
108108

109109
$input->setArgument('name', $value);

0 commit comments

Comments
 (0)