File tree Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 55 */
66namespace Migration \Console ;
77
8+ use Symfony \Component \Console \Command \Command ;
89use Symfony \Component \Console \Input \InputInterface ;
910use Symfony \Component \Console \Output \OutputInterface ;
1011
@@ -57,5 +58,6 @@ protected function configure()
5758 protected function execute (InputInterface $ input , OutputInterface $ output )
5859 {
5960 $ this ->dataMode ->run ();
61+ return Command::SUCCESS ;
6062 }
6163}
Original file line number Diff line number Diff line change 55 */
66namespace Migration \Console ;
77
8+ use Symfony \Component \Console \Command \Command ;
89use Symfony \Component \Console \Input \InputInterface ;
910use Symfony \Component \Console \Output \OutputInterface ;
1011
@@ -57,6 +58,7 @@ protected function configure()
5758 protected function execute (InputInterface $ input , OutputInterface $ output )
5859 {
5960 $ this ->deltaMode ->run ();
61+ return Command::SUCCESS ;
6062 }
6163
6264 /**
Original file line number Diff line number Diff line change 55 */
66namespace Migration \Console ;
77
8+ use Symfony \Component \Console \Command \Command ;
89use Symfony \Component \Console \Input \InputInterface ;
910use Symfony \Component \Console \Output \OutputInterface ;
1011
@@ -54,8 +55,9 @@ protected function configure()
5455 /**
5556 * @inheritdoc
5657 */
57- protected function execute (InputInterface $ input , OutputInterface $ output )
58+ protected function execute (InputInterface $ input , OutputInterface $ output ): int
5859 {
5960 $ this ->settingsMode ->run ();
61+ return Command::SUCCESS ;
6062 }
6163}
You can’t perform that action at this time.
0 commit comments