Skip to content

Commit

Permalink
Applied code review suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
adamwojs committed Aug 9, 2024
1 parent ceb2455 commit 6185979
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/lib/Command/IbexaSetupCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
use Composer\Semver\VersionParser;
use Exception;
use Ibexa\PostInstall\IbexaProductVersion;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Exception\RuntimeException;
use Symfony\Component\Console\Helper\ProgressBar;
use Symfony\Component\Console\Input\InputInterface;
Expand Down Expand Up @@ -104,7 +105,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int
$output->writeln("\nPlatform.sh config files installed successfully");
}

return \Symfony\Component\Console\Command\Command::SUCCESS;
return Command::SUCCESS;
}

protected function getCommonFiles(string $product): Finder
Expand Down

0 comments on commit 6185979

Please sign in to comment.