protected function DbToolsApplication::getDefaultCommands in Drupal 8
Same name and namespace in other branches
- 9 core/lib/Drupal/Core/Command/DbToolsApplication.php \Drupal\Core\Command\DbToolsApplication::getDefaultCommands()
File
- core/
lib/ Drupal/ Core/ Command/ DbToolsApplication.php, line 22
Class
- DbToolsApplication
- Provides a command to import a database generation script.
Namespace
Drupal\Core\CommandCode
protected function getDefaultCommands() {
$default_commands = parent::getDefaultCommands();
$default_commands[] = new DbDumpCommand();
$default_commands[] = new DbImportCommand();
return $default_commands;
}