function ListCommand::execute
Overrides Command::execute
File
-
vendor/
symfony/ console/ Command/ ListCommand.php, line 60
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) : int {
$helper = new DescriptorHelper();
$helper->describe($output, $this->getApplication(), [
'format' => $input->getOption('format'),
'raw_text' => $input->getOption('raw'),
'namespace' => $input->getArgument('namespace'),
'short' => $input->getOption('short'),
]);
return 0;
}