Shortened 'credential' in CLI to 'cred'

This commit is contained in:
Netkas 2022-12-07 14:46:59 -05:00
parent 8bda6da2dc
commit c99b58892f
3 changed files with 2 additions and 3 deletions

View file

@ -30,7 +30,6 @@
self::displayOptions(); self::displayOptions();
exit(0); exit(0);
} }
/** /**

View file

@ -71,7 +71,7 @@
new CliHelpSection(['project'], 'Manages the current project'), new CliHelpSection(['project'], 'Manages the current project'),
new CliHelpSection(['package'], 'Manages the package system'), new CliHelpSection(['package'], 'Manages the package system'),
new CliHelpSection(['cache'], 'Manages the system cache'), new CliHelpSection(['cache'], 'Manages the system cache'),
new CliHelpSection(['credential'], 'Manages credentials'), new CliHelpSection(['cred'], 'Manages credentials'),
new CliHelpSection(['config'], 'Changes NCC configuration values'), new CliHelpSection(['config'], 'Changes NCC configuration values'),
]; ];
$commands_padding = \ncc\Utilities\Functions::detectParametersPadding($commands) + 2; $commands_padding = \ncc\Utilities\Functions::detectParametersPadding($commands) + 2;

View file

@ -109,7 +109,7 @@
BuildMenu::start(self::$args); BuildMenu::start(self::$args);
exit(0); exit(0);
case 'credential': case 'cred':
CredentialMenu::start(self::$args); CredentialMenu::start(self::$args);
exit(0); exit(0);