vendor/sulu/sulu/src/Sulu/Bundle/AdminBundle/Command/DownloadBuildCommand.php line 24

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of Sulu.
  4.  *
  5.  * (c) Sulu GmbH
  6.  *
  7.  * This source file is subject to the MIT license that is bundled
  8.  * with this source code in the file LICENSE.
  9.  */
  10. namespace Sulu\Bundle\AdminBundle\Command;
  11. use Symfony\Component\Console\Command\Command;
  12. use Symfony\Component\Console\Input\InputInterface;
  13. use Symfony\Component\Console\Output\OutputInterface;
  14. @\trigger_error(
  15.     \sprintf(
  16.         'The "%s" class is deprecated since Sulu 2, use "%s" instead.',
  17.         DownloadBuildCommand::class,
  18.         UpdateBuildCommand::class
  19.     ),
  20.     \E_USER_DEPRECATED
  21. );
  22. /**
  23.  * @deprecated use the "UpdateBuildCommand" class instead
  24.  */
  25. class DownloadBuildCommand extends Command
  26. {
  27.     protected static $defaultName 'sulu:admin:download-build';
  28.     protected function configure()
  29.     {
  30.         $this->setDescription('Downloads the current admin application build from the sulu/skeleton repository.');
  31.     }
  32.     protected function execute(InputInterface $inputOutputInterface $output): int
  33.     {
  34.         $command $this->getApplication()->find('sulu:admin:update-build');
  35.         return $command->run($input$output);
  36.     }
  37. }