Skip to content

Commit

Permalink
Merge pull request #426 from OskarStark/patch-4
Browse files Browse the repository at this point in the history
formatted help
  • Loading branch information
guilhermeblanco committed May 27, 2015
2 parents c573f1c + 4134180 commit 2b64305
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions Command/CreateDatabaseDoctrineCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,19 +34,17 @@ protected function configure()
{
$this
->setName('doctrine:database:create')
->setDescription('Creates the configured databases')
->setDescription('Creates the configured database')
->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>doctrine:database:create</info> command creates the default connections database:
<info>php app/console doctrine:database:create</info>
<info>php app/console doctrine:database:create</info>
You can also optionally specify the name of a connection to create the
database for:
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 app/console doctrine:database:create --connection=default</info>
EOT
);
}
Expand Down

0 comments on commit 2b64305

Please sign in to comment.