/** * @{inheritdoc} */ protected function initialize(InputInterface $input, OutputInterface $output) { parent::initialize($input, $output); $this->symfonyCommandName = $input->hasArgument('command_name') ? $input->getArgument('command_name') : str_replace('project:symfony:', null, $this->getName()); $this->symfonyCommandArguments = $this->getSymfonyCommandArguments($input); $this->symfonyCommandOptions = $this->getSymfonyCommandOptions($input); }
/** * @{inheritdoc} */ protected function configure() { $this->setDescription('Lints a file YAML and outputs encountered errors'); parent::configure(); }
/** * @{inheritdoc} */ protected function configure() { $this->setDescription('Builds assets for to one or all projects'); parent::configure(); }
/** * {@inheritdoc} */ protected function configure() { parent::configure(); $this->setDescription('Install dependencies with composer and build assets.'); }