Skip to content

Commit e90efdc

Browse files
author
Hugo Hamon
committed
[DoctrineBundle] removed extra point at the end of the commands' short descriptions.
1 parent 3caa895 commit e90efdc

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/Symfony/Bundle/DoctrineBundle/Command/Proxy/CreateSchemaDoctrineCommand.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ protected function configure()
3333

3434
$this
3535
->setName('doctrine:schema:create')
36-
->setDescription('Executes (or dumps) the SQL needed to generate the database schema.')
36+
->setDescription('Executes (or dumps) the SQL needed to generate the database schema')
3737
->addOption('em', null, InputOption::VALUE_OPTIONAL, 'The entity manager to use for this command')
3838
->setHelp(<<<EOT
3939
The <info>doctrine:schema:create</info> command executes the SQL needed to

src/Symfony/Bundle/DoctrineBundle/Command/Proxy/DropSchemaDoctrineCommand.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ protected function configure()
3232

3333
$this
3434
->setName('doctrine:schema:drop')
35-
->setDescription('Executes (or dumps) the SQL needed to drop the current database schema.')
35+
->setDescription('Executes (or dumps) the SQL needed to drop the current database schema')
3636
->addOption('em', null, InputOption::VALUE_OPTIONAL, 'The entity manager to use for this command')
3737
->setHelp(<<<EOT
3838
The <info>doctrine:schema:drop</info> command generates the SQL needed to

src/Symfony/Bundle/DoctrineBundle/Command/Proxy/UpdateSchemaDoctrineCommand.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ protected function configure()
3333

3434
$this
3535
->setName('doctrine:schema:update')
36-
->setDescription('Executes (or dumps) the SQL needed to update the database schema to match the current mapping metadata.')
36+
->setDescription('Executes (or dumps) the SQL needed to update the database schema to match the current mapping metadata')
3737
->addOption('em', null, InputOption::VALUE_OPTIONAL, 'The entity manager to use for this command')
3838
->setHelp(<<<EOT
3939
The <info>doctrine:schema:update</info> command generates the SQL needed to

0 commit comments

Comments
 (0)