protected function ListCommand::execute in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/console/Command/ListCommand.php \Symfony\Component\Console\Command\ListCommand::execute()
Executes the current command.
This method is not abstract because you can use this class as a concrete class. In this case, instead of defining the execute() method, you set the code to execute by passing a Closure to the setCode() method.
Parameters
InputInterface $input An InputInterface instance:
OutputInterface $output An OutputInterface instance:
Return value
null|int null or 0 if everything went fine, or an error code
Throws
\LogicException When this abstract method is not implemented
Overrides Command::execute
See also
setCode()
File
- vendor/
symfony/ console/ Command/ ListCommand.php, line 69
Class
- ListCommand
- ListCommand displays the list of all available commands for the application.
Namespace
Symfony\Component\Console\CommandCode
protected function execute(InputInterface $input, OutputInterface $output) {
if ($input
->getOption('xml')) {
@trigger_error('The --xml option was deprecated in version 2.7 and will be removed in version 3.0. Use the --format option instead.', E_USER_DEPRECATED);
$input
->setOption('format', 'xml');
}
$helper = new DescriptorHelper();
$helper
->describe($output, $this
->getApplication(), array(
'format' => $input
->getOption('format'),
'raw_text' => $input
->getOption('raw'),
'namespace' => $input
->getArgument('namespace'),
));
}