You are here

protected function DbDumpApplication::getCommandName in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Command/DbDumpApplication.php \Drupal\Core\Command\DbDumpApplication::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/DbDumpApplication.php, line 21
Contains \Drupal\Core\Command\DbDumpApplication.

Class

DbDumpApplication
Provides a command to dump a database generation script.

Namespace

Drupal\Core\Command

Code

protected function getCommandName(InputInterface $input) {
  return 'dump-database-d8-mysql';
}