Skip to content

Commit

Permalink
Remove all short -h options
Browse files Browse the repository at this point in the history
  • Loading branch information
tmuras committed May 16, 2023
1 parent ff11371 commit 37f6ad9
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Moosh/Command/Moodle310/Cache/CacheAddMemStore.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public function __construct() {
$this->addOption('p|password:', "The server connection password");
$this->addOption('k|key-prefix:', "The key prefix");
$this->addOption('c|compression:', "Use compression for Mem Cache");
$this->addOption('h|hash:', "Sets the hash method for the Cache storage");
$this->addOption('hash:', "Sets the hash method for the Cache storage");
$this->addOption('b|bufferwrites:', "Determines whether a buffer is written");
$this->addOption('z|serialiser:', "Determines whether the cache store is serialised");
$this->addOption('s|shared:', "Enables the cache to be shared");
Expand Down
2 changes: 1 addition & 1 deletion Moosh/Command/Moodle33/Cache/CacheAddMemStore.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public function __construct() {
$this->addOption('p|password:', "The server connection password");
$this->addOption('k|key-prefix:', "The key prefix");
$this->addOption('c|compression:', "Use compression for Mem Cache");
$this->addOption('h|hash:', "Sets the hash method for the Cache storage");
$this->addOption('hash:', "Sets the hash method for the Cache storage");
$this->addOption('b|bufferwrites:', "Determines whether a buffer is written");
$this->addOption('z|serialiser:', "Determines whether the cache store is serialised");
$this->addOption('s|shared:', "Enables the cache to be shared");
Expand Down
2 changes: 1 addition & 1 deletion Moosh/Command/Moodle39/Cache/CacheAddMemStore.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public function __construct()
$this->addOption('p|password:', "The server connection password");
$this->addOption('k|key-prefix:', "The key prefix");
$this->addOption('c|compression:', "Use compression for Mem Cache");
$this->addOption('h|hash:', "Sets the hash method for the Cache storage");
$this->addOption('hash:', "Sets the hash method for the Cache storage");
$this->addOption('b|bufferwrites:', "Determines whether a buffer is written");
$this->addOption('z|serialiser:', "Determines whether the cache store is serialised");
$this->addOption('s|shared:', "Enables the cache to be shared");
Expand Down
2 changes: 1 addition & 1 deletion Moosh/Command/Moodle39/GradeCategory/GradeCategoryList.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public function __construct() {
parent::__construct('list', 'gradecategory');

$this->addOption('i|id', 'display id column only');
$this->addOption('h|hidden:', 'show all/yes/no if hidden', 'all');
$this->addOption('hidden:', 'show all/yes/no if hidden', 'all');
$this->addOption('e|empty:', 'show only empty grade categories: all/yes/no if empty', 'all');
$this->addOption('f|fields:', 'show only those fields in the output (comma separated)');
$this->addOption('o|output:', 'output format: tab, csv', 'csv');
Expand Down
2 changes: 1 addition & 1 deletion Moosh/Command/Moodle39/GradeItem/GradeItemList.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public function __construct() {
parent::__construct('list', 'gradeitem');

$this->addOption('i|id', 'display id column only');
$this->addOption('h|hidden:', 'show all/yes/no if hidden', 'all');
$this->addOption('hidden:', 'show all/yes/no if hidden', 'all');
$this->addOption('l|locked:', 'show all/yes/no if locked', 'all');
$this->addOption('e|empty:', 'show only scoreless grade items: all/yes/no if empty', 'all');
$this->addOption('f|fields:', 'show only those fields in the output (comma separated)');
Expand Down

0 comments on commit 37f6ad9

Please sign in to comment.