X-Git-Url: https://git.cweiske.de/shpub.git/blobdiff_plain/96196413bef5ffb4ec3e09770b4e6847090dd71e..e328a9e013a709e77e8e783de98d30d7eccd6d65:/src/shpub/Cli.php diff --git a/src/shpub/Cli.php b/src/shpub/Cli.php index 9740f4e..4507155 100644 --- a/src/shpub/Cli.php +++ b/src/shpub/Cli.php @@ -115,50 +115,8 @@ class Cli ) ); - $cmd = $optParser->addCommand('connect'); - $cmd->addOption( - 'force', - array( - 'short_name' => '-f', - 'long_name' => '--force-update', - 'description' => 'Force token update if token already available', - 'action' => 'StoreTrue', - 'default' => false, - ) - ); - $cmd->addArgument( - 'server', - [ - 'optional' => false, - 'description' => 'Server URL', - ] - ); - $cmd->addArgument( - 'user', - [ - 'optional' => true, - 'description' => 'User URL', - ] - ); - $cmd->addArgument( - 'key', - [ - 'optional' => true, - 'description' => 'Short name (key)', - ] - ); - - $cmd = $optParser->addCommand('server'); - $cmd->addOption( - 'verbose', - array( - 'short_name' => '-v', - 'long_name' => '--verbose', - 'description' => 'Show more server infos', - 'action' => 'StoreTrue', - 'default' => false, - ) - ); + Command_Connect::opts($optParser); + Command_Server::opts($optParser); Command_Article::opts($optParser); Command_Note::opts($optParser);