vendor/sulu/sulu/src/Sulu/Bundle/CoreBundle/CommandOptional/SuluBuildCommand.php line 21

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\CoreBundle\CommandOptional;
  11. use Massive\Bundle\BuildBundle\Command\BuildCommand;
  12. use Symfony\Component\Console\Input\InputOption;
  13. /**
  14.  * This command extends the Massive BuildCommand and
  15.  * adds a global "destroy" option and changes the name to "sulu:build".
  16.  */
  17. class SuluBuildCommand extends BuildCommand
  18. {
  19.     protected static $defaultName 'sulu:build';
  20.     public function configure()
  21.     {
  22.         parent::configure();
  23.         $this->addOption('destroy'nullInputOption::VALUE_NONE'Destroy existing data');
  24.     }
  25. }