add description for all commands
[shpub.git] / src / shpub / Command / Repost.php
index 2f4b46f7c568f70145a522c18b0564533f83f10a..4154b2d22992c5f78bfea4d7cc5ec03f04e93885 100644 (file)
@@ -3,19 +3,10 @@ namespace shpub;
 
 class Command_Repost extends Command_AbstractProps
 {
-    /**
-     * @var Config
-     */
-    protected $cfg;
-
-    public function __construct($cfg)
-    {
-        $this->cfg = $cfg;
-    }
-
     public static function opts(\Console_CommandLine $optParser)
     {
         $cmd = $optParser->addCommand('repost');
+        $cmd->description = 'Create a repost';
         static::optsGeneric($cmd);
         $cmd->addArgument(
             'url',
@@ -34,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();