Skip to content

Commit

Permalink
Fixed docs and help for purge command not mentioning remotes.
Browse files Browse the repository at this point in the history
  • Loading branch information
joachim-n committed May 29, 2024
1 parent 72b8e41 commit 6e82d2c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Command/Purge.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
use Dorgflow\DependencyInjection\ContainerAwareTrait;

/**
* Deletes ALL feature branches and files for issues which are fixed.
* Deletes ALL feature branches, remotes, and files for issues which are fixed.
*/
#[\AllowDynamicProperties]
class Purge extends SymfonyCommand {
Expand All @@ -25,8 +25,8 @@ class Purge extends SymfonyCommand {
protected function configure() {
$this
->setName('purge')
->setDescription('Deletes all feature branches whose issues are committed to the master branch.')
->setHelp('Deletes all feature branches whose issues are committed to the master branch.');
->setDescription('Deletes all feature branches and remotes whose issues are committed to the master branch.')
->setHelp('Deletes all feature branches and remotes whose issues are committed to the master branch.');
}

protected function setServices() {
Expand Down

0 comments on commit 6e82d2c

Please sign in to comment.