You are here

public function DbDumpApplication::getDefinition in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/lib/Drupal/Core/Command/DbDumpApplication.php \Drupal\Core\Command\DbDumpApplication::getDefinition()

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

Overrides Application::getDefinition

File

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

Class

DbDumpApplication
Provides a command to dump a database generation script.

Namespace

Drupal\Core\Command

Code

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

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