Skip to content

Commit

Permalink
Command::SUCCESS は Symfony5以降のサポート
Browse files Browse the repository at this point in the history
  • Loading branch information
nanasess committed Apr 7, 2024
1 parent 59546af commit bf12f62
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Command/GenerateDummyDataCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -119,9 +119,9 @@ protected function execute(InputInterface $input, OutputInterface $output)
}
$io->writeln('');

return Command::SUCCESS;
return 0;
}

return Command::SUCCESS;
return 0;
}
}

0 comments on commit bf12f62

Please sign in to comment.