X-Git-Url: https://git.cweiske.de/shpub.git/blobdiff_plain/f46e4d3108d944bcf86f5905780f1fcfd441c036..afec87fc377ef8bafec4b7588084cca91468bd68:/src/shpub/Command/Repost.php diff --git a/src/shpub/Command/Repost.php b/src/shpub/Command/Repost.php index 3c39178..4154b2d 100644 --- a/src/shpub/Command/Repost.php +++ b/src/shpub/Command/Repost.php @@ -6,6 +6,7 @@ class Command_Repost extends Command_AbstractProps public static function opts(\Console_CommandLine $optParser) { $cmd = $optParser->addCommand('repost'); + $cmd->description = 'Create a repost'; static::optsGeneric($cmd); $cmd->addArgument( 'url', @@ -24,8 +25,8 @@ class Command_Repost extends Command_AbstractProps } $req = new Request($this->cfg->host, $this->cfg); - $req->req->addPostParameter('h', 'entry'); - $req->req->addPostParameter('repost-of', $url); + $req->setType('entry'); + $req->addProperty('repost-of', $url); $this->handleGenericOptions($cmdRes, $req); $res = $req->send();