Skip to content
This repository was archived by the owner on Sep 16, 2021. It is now read-only.

Commit 8003bf9

Browse files
committed
Merge pull request #28 from hacfi/command_description
Update RefreshCommand description
2 parents e4d9572 + 9600171 commit 8003bf9

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

Command/RefreshCommand.php

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ public function configure()
1414
{
1515
$this
1616
->setName('cmf:routing:auto:refresh')
17-
->setDescription(<<<HERE
17+
->setDescription('Refresh auto-routeable documents')
18+
->setHelp(<<<HERE
1819
This command iterates over all Documents that are mapped by the auto
1920
routing system and re-applys the auto routing logic.
2021
@@ -29,10 +30,10 @@ public function configure()
2930
HERE
3031
);
3132

32-
$this->addOption('dry-run', null, InputOption::VALUE_NONE,
33+
$this->addOption('dry-run', null, InputOption::VALUE_NONE,
3334
'Do not write any change to the database.'
3435
);
35-
$this->addOption('class', null, InputOption::VALUE_REQUIRED,
36+
$this->addOption('class', null, InputOption::VALUE_REQUIRED,
3637
'Only update the given class FQN'
3738
);
3839
$this->addOption('session', null, InputOption::VALUE_OPTIONAL, 'The session to use for this command');

0 commit comments

Comments
 (0)