Skip to content

Commit

Permalink
rft
Browse files Browse the repository at this point in the history
  • Loading branch information
Guikingone committed Jan 28, 2020
1 parent 891398a commit ac780f4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Command/DropDatabaseDoctrineCommand.php
Expand Up @@ -30,7 +30,7 @@ protected function configure()
->setDescription('Drops the configured database')
->addOption('shard', 's', InputOption::VALUE_REQUIRED, 'The shard connection to use for this command')
->addOption('connection', 'c', InputOption::VALUE_OPTIONAL, 'The connection to use for this command')
->addOption('if-exists', 'i', InputOption::VALUE_NONE, 'Don\'t trigger an error, when the database doesn\'t exist')
->addOption('if-exists', null, InputOption::VALUE_NONE, 'Don\'t trigger an error, when the database doesn\'t exist')
->addOption('force', 'f', InputOption::VALUE_NONE, 'Set this parameter to execute this action')
->setHelp(<<<EOT
The <info>%command.name%</info> command drops the default connections database:
Expand Down
2 changes: 1 addition & 1 deletion Tests/Command/DropDatabaseDoctrineTest.php
Expand Up @@ -109,7 +109,7 @@ public function provideIncompatibleDriverOptions() : Generator
yield 'short name' => [
[
'-f' => true,
'-i' => true,
'--if-exists' => true,
],
];
}
Expand Down

0 comments on commit ac780f4

Please sign in to comment.