Skip to content

Commit

Permalink
add return types to LoadDataFixturesDoctrineCommand.php
Browse files Browse the repository at this point in the history
  • Loading branch information
tacman committed Oct 25, 2023
1 parent d2c8c09 commit eb67e9b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Command/LoadDataFixturesDoctrineCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public function __construct(SymfonyFixturesLoader $fixturesLoader, ?ManagerRegis
}

/** @return void */
protected function configure()
protected function configure(): void
{
$this
->setName('doctrine:fixtures:load')
Expand Down Expand Up @@ -96,7 +96,7 @@ protected function configure()
/**
* @return int
*/
protected function execute(InputInterface $input, OutputInterface $output)
protected function execute(InputInterface $input, OutputInterface $output): int
{
$ui = new SymfonyStyle($input, $output);

Expand Down

0 comments on commit eb67e9b

Please sign in to comment.