X-Git-Url: https://git.cweiske.de/shpub.git/blobdiff_plain/f2ef5ad9726ed325ffb846591ed6e701a0894dee..7066ca245ef989b71e2ec71030ca9637d7196ff8:/src/shpub/Cli.php?ds=sidebyside diff --git a/src/shpub/Cli.php b/src/shpub/Cli.php index 57ccee7..77b62cc 100644 --- a/src/shpub/Cli.php +++ b/src/shpub/Cli.php @@ -90,7 +90,7 @@ class Cli { $optParser = new \Console_CommandLine(); $optParser->description = 'shpub'; - $optParser->version = '0.0.4'; + $optParser->version = '0.0.6'; $optParser->subcommand_required = true; $optParser->addOption( @@ -160,10 +160,16 @@ class Cli ) ); + Command_Article::opts($optParser); Command_Note::opts($optParser); Command_Reply::opts($optParser); Command_Like::opts($optParser); Command_Repost::opts($optParser); + Command_Rsvp::opts($optParser); + + Command_Delete::opts($optParser); + Command_Undelete::opts($optParser); + Command_Update::opts($optParser); return $optParser; }