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.     /**
  18.      * {@inheritdoc}
  19.      */
  20.     protected function configure(): void
  21.     {
  22.         $this
  23.             ->setName('sylius:install:check-requirements')
  24.             ->setDescription('Checks if all Sylius requirements are satisfied.')
  25.             ->setHelp(<<<EOT
  26. The <info>%command.name%</info> command checks system requirements.
  27. EOT
  28.             )
  29.         ;
  30.     }
  31.     /**
  32.      * {@inheritdoc}
  33.      */
  34.     protected function execute(InputInterface $inputOutputInterface $output): void
  35.     {
  36.         $fulfilled $this->getContainer()->get('sylius.installer.checker.sylius_requirements')->check($input$output);
  37.         if (!$fulfilled) {
  38.             throw new RuntimeException(
  39.                 'Some system requirements are not fulfilled. Please check output messages and fix them.'
  40.             );
  41.         }
  42.         $output->writeln('<info>Success! Your system can run Sylius properly.</info>');
  43.     }
  44. }