setName('about') ->setDescription($this->trans('commands.about.description')); } /** * {@inheritdoc} */ protected function execute(InputInterface $input, OutputInterface $output) { $application = $this->getApplication(); $aboutTitle = sprintf( '%s (%s)', $application->getName(), $application->getVersion() ); $this->getIo()->setDecorated(false); $this->getIo()->title($aboutTitle); $this->getIo()->setDecorated(true); $commands = [ 'init' => [ $this->trans('commands.init.description'), 'drupal init' ], 'quick-start' => [ $this->trans('commands.common.messages.quick-start'), 'drupal quick:start' ], 'site-new' => [ $this->trans('commands.site.new.description'), 'drupal site:new' ], 'site-install' => [ $this->trans('commands.site.install.description'), sprintf( 'drupal site:install' ) ], 'list' => [ $this->trans('commands.list.description'), 'drupal list', ] ]; foreach ($commands as $command => $commandInfo) { $this->getIo()->writeln($commandInfo[0]); $this->getIo()->comment(sprintf(' %s', $commandInfo[1])); $this->getIo()->newLine(); } $this->getIo()->writeln($this->trans('commands.self-update.description')); $this->getIo()->comment(' drupal self-update'); $this->getIo()->newLine(); } }