From bf12f62df407f9dd4bb5c1d651ae91ec0c377f5e Mon Sep 17 00:00:00 2001 From: Kentaro Ohkouchi Date: Sun, 7 Apr 2024 23:02:31 +0900 Subject: [PATCH] =?UTF-8?q?Command::SUCCESS=20=E3=81=AF=20Symfony5?= =?UTF-8?q?=E4=BB=A5=E9=99=8D=E3=81=AE=E3=82=B5=E3=83=9D=E3=83=BC=E3=83=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Command/GenerateDummyDataCommand.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Command/GenerateDummyDataCommand.php b/src/Command/GenerateDummyDataCommand.php index 88f72be..fd23fb3 100644 --- a/src/Command/GenerateDummyDataCommand.php +++ b/src/Command/GenerateDummyDataCommand.php @@ -119,9 +119,9 @@ protected function execute(InputInterface $input, OutputInterface $output) } $io->writeln(''); - return Command::SUCCESS; + return 0; } - return Command::SUCCESS; + return 0; } }