From ceb245594fcbc9f6ac5cb7937f2ea3539409aa5e Mon Sep 17 00:00:00 2001 From: Andrew Longosz Date: Fri, 19 Jul 2024 16:47:43 +0200 Subject: [PATCH] [Rector] Applied all Symfony 5.x rectors to the production codebase Applied rules: * CommandConstantReturnCodeRector --- src/lib/Command/IbexaSetupCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/Command/IbexaSetupCommand.php b/src/lib/Command/IbexaSetupCommand.php index 2e10660..2c2c817 100644 --- a/src/lib/Command/IbexaSetupCommand.php +++ b/src/lib/Command/IbexaSetupCommand.php @@ -104,7 +104,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int $output->writeln("\nPlatform.sh config files installed successfully"); } - return 0; + return \Symfony\Component\Console\Command\Command::SUCCESS; } protected function getCommonFiles(string $product): Finder