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

Commit

Permalink
Merge pull request #28 from hacfi/command_description
Browse files Browse the repository at this point in the history
Update RefreshCommand description
  • Loading branch information
lsmith77 committed Aug 5, 2013
2 parents e4d9572 + 9600171 commit 8003bf9
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Command/RefreshCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ public function configure()
{
$this
->setName('cmf:routing:auto:refresh')
->setDescription(<<<HERE
->setDescription('Refresh auto-routeable documents')
->setHelp(<<<HERE
This command iterates over all Documents that are mapped by the auto
routing system and re-applys the auto routing logic.
Expand All @@ -29,10 +30,10 @@ public function configure()
HERE
);

$this->addOption('dry-run', null, InputOption::VALUE_NONE,
$this->addOption('dry-run', null, InputOption::VALUE_NONE,
'Do not write any change to the database.'
);
$this->addOption('class', null, InputOption::VALUE_REQUIRED,
$this->addOption('class', null, InputOption::VALUE_REQUIRED,
'Only update the given class FQN'
);
$this->addOption('session', null, InputOption::VALUE_OPTIONAL, 'The session to use for this command');
Expand Down

0 comments on commit 8003bf9

Please sign in to comment.