From: Christian Weiske Date: Wed, 12 Mar 2014 05:44:14 +0000 (+0100) Subject: fix long command names X-Git-Tag: v0.5.0~16 X-Git-Url: https://git.cweiske.de/bdrem.git/commitdiff_plain/80b10399a5185e3b3442bae748a46a773d72eeb0?ds=sidebyside fix long command names --- diff --git a/src/bdrem/UserInterface.php b/src/bdrem/UserInterface.php index 2827415..2ba1cfb 100644 --- a/src/bdrem/UserInterface.php +++ b/src/bdrem/UserInterface.php @@ -47,7 +47,7 @@ abstract class UserInterface 'daysNext', array( 'short_name' => '-n', - 'long_name' => '--days-next', + 'long_name' => '--next', 'description' => 'Show NUM days after date', 'help_name' => 'NUM', 'action' => 'StoreInt', @@ -58,7 +58,7 @@ abstract class UserInterface 'daysPrev', array( 'short_name' => '-p', - 'long_name' => '--previous', + 'long_name' => '--prev', 'description' => 'Show NUM days before date', 'help_name' => 'NUM', 'action' => 'StoreInt',