public function Application::getDefinition in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/console/Application.php \Symfony\Component\Console\Application::getDefinition()
Gets the InputDefinition related to this Application.
Return value
InputDefinition The InputDefinition instance
2 calls to Application::getDefinition()
- DbDumpApplication::getDefinition in core/
lib/ Drupal/ Core/ Command/ DbDumpApplication.php - Overridden so the application doesn't expect the command name as the first argument.
- GenerateProxyClassApplication::getDefinition in core/
lib/ Drupal/ Core/ Command/ GenerateProxyClassApplication.php - Overridden so the application doesn't expect the command name as the first argument.
2 methods override Application::getDefinition()
- DbDumpApplication::getDefinition in core/
lib/ Drupal/ Core/ Command/ DbDumpApplication.php - Overridden so the application doesn't expect the command name as the first argument.
- GenerateProxyClassApplication::getDefinition in core/
lib/ Drupal/ Core/ Command/ GenerateProxyClassApplication.php - Overridden so the application doesn't expect the command name as the first argument.
File
- vendor/
symfony/ console/ Application.php, line 230
Class
- Application
- An Application is the container for a collection of commands.
Namespace
Symfony\Component\ConsoleCode
public function getDefinition() {
return $this->definition;
}