vendor/sylius/sylius/src/Sylius/Bundle/CoreBundle/Command/CheckRequirementsCommand.php line 20

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the Sylius package.
  4.  *
  5.  * (c) Paweł Jędrzejewski
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  */
  10. declare(strict_types=1);
  11. namespace Sylius\Bundle\CoreBundle\Command;
  12. use RuntimeException;
  13. use Symfony\Component\Console\Input\InputInterface;
  14. use Symfony\Component\Console\Output\OutputInterface;
  15. final class CheckRequirementsCommand extends AbstractInstallCommand
  16. {
  17.     protected function configure(): void
  18.     {
  19.         $this
  20.             ->setName('sylius:install:check-requirements')
  21.             ->setDescription('Checks if all Sylius requirements are satisfied.')
  22.             ->setHelp(<<<EOT
  23. The <info>%command.name%</info> command checks system requirements.
  24. EOT
  25.             )
  26.         ;
  27.     }
  28.     protected function execute(InputInterface $inputOutputInterface $output): int
  29.     {
  30.         $fulfilled $this->getContainer()->get('sylius.installer.checker.sylius_requirements')->check($input$output);
  31.         if (!$fulfilled) {
  32.             throw new RuntimeException(
  33.                 'Some system requirements are not fulfilled. Please check output messages and fix them.'
  34.             );
  35.         }
  36.         $output->writeln('<info>Success! Your system can run Sylius properly.</info>');
  37.         return 0;
  38.     }
  39. }