Skip to content

Commit

Permalink
minor #427 use variable name instead of hardcode name (OskarStark)
Browse files Browse the repository at this point in the history
This PR was merged into the 1.4.x-dev branch.

Discussion
----------

use variable name instead of hardcode name

Commits
-------

d093497 use variable name instead of hardcode name
  • Loading branch information
stof committed May 28, 2015
2 parents c603bb2 + d093497 commit ae3b290
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 ae3b290

Please sign in to comment.