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

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_deprecation(
  15. 'sulu/sulu',
  16. '2.0',
  17. 'The "%s" class is deprecated, use "%s" instead.',
  18. DownloadBuildCommand::class,
  19. UpdateBuildCommand::class
  20. );
  21. /**
  22. * @deprecated use the "UpdateBuildCommand" class instead
  23. */
  24. class DownloadBuildCommand extends Command
  25. {
  26. protected static $defaultName = 'sulu:admin:download-build';
  27. protected function configure()
  28. {
  29. $this->setDescription('Downloads the current admin application build from the sulu/skeleton repository.');
  30. }
  31. protected function execute(InputInterface $input, OutputInterface $output): int
  32. {
  33. $command = $this->getApplication()->find('sulu:admin:update-build');
  34. return $command->run($input, $output);
  35. }
  36. }