You are here

public function GenerateProxyClassApplication::getDefinition in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Command/GenerateProxyClassApplication.php \Drupal\Core\Command\GenerateProxyClassApplication::getDefinition()
  2. 10 core/lib/Drupal/Core/Command/GenerateProxyClassApplication.php \Drupal\Core\Command\GenerateProxyClassApplication::getDefinition()

Overridden so the application doesn't expect the command name as the first argument.

File

core/lib/Drupal/Core/Command/GenerateProxyClassApplication.php, line 56

Class

GenerateProxyClassApplication
Provides a console command to generate proxy classes.

Namespace

Drupal\Core\Command

Code

public function getDefinition() {
  $definition = parent::getDefinition();

  // Clears the normal first argument (the command name).
  $definition
    ->setArguments();
  return $definition;
}