You are here

protected function GenerateProxyClassApplication::getCommandName in Zircon Profile 8.0

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

Gets the name of the command based on input.

Parameters

InputInterface $input The input interface:

Return value

string The command name

Overrides Application::getCommandName

File

core/lib/Drupal/Core/Command/GenerateProxyClassApplication.php, line 41
Contains \Drupal\Core\Command\GenerateProxyClassApplication.

Class

GenerateProxyClassApplication
Provides a console command to generate proxy classes.

Namespace

Drupal\Core\Command

Code

protected function getCommandName(InputInterface $input) {
  return 'generate-proxy-class';
}