You are here

protected function DbDumpApplication::getDefaultCommands 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::getDefaultCommands()

Gets the default commands that should always be available.

Return value

Command[] An array of default Command instances

Overrides Application::getDefaultCommands

File

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

Class

DbDumpApplication
Provides a command to dump a database generation script.

Namespace

Drupal\Core\Command

Code

protected function getDefaultCommands() {

  // Even though this is a single command, keep the HelpCommand (--help).
  $default_commands = parent::getDefaultCommands();
  $default_commands[] = new DbDumpCommand();
  return $default_commands;
}