Skip to content

Commit

Permalink
use variable name instead of hardcode name
Browse files Browse the repository at this point in the history
  • Loading branch information
OskarStark committed May 27, 2015
1 parent 2b64305 commit d093497
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Command/CreateDatabaseDoctrineCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,13 @@ protected function configure()
->addOption('connection', null, InputOption::VALUE_OPTIONAL, 'The connection to use for this command')
->addOption('if-not-exists', null, InputOption::VALUE_NONE, 'Don\'t trigger an error, when the database already exists')
->setHelp(<<<EOT
The <info>doctrine:database:create</info> command creates the default connections database:
The <info>%command.name%</info> command creates the default connections database:
<info>php app/console doctrine:database:create</info>
<info>php %command.full_name%</info>
You can also optionally specify the name of a connection to create the database for:
<info>php app/console doctrine:database:create --connection=default</info>
<info>php %command.full_name% --connection=default</info>
EOT
);
}
Expand Down

0 comments on commit d093497

Please sign in to comment.