protected function getCommandName(InputInterface
$input): ?string
{ return 'dump-database-d8-mysql';
} /**
* {@inheritdoc}
*/
protected function getDefaultCommands(): array
{ // Even though this is a single command, keep the HelpCommand (--help).
$default_commands = parent::
getDefaultCommands();
$default_commands[] =
new DbDumpCommand();
return $default_commands;
} /**
* {@inheritdoc}
*
* Overridden so the application doesn't expect the command name as the first
* argument.
*/
public function getDefinition(): InputDefinition
{