Add "json" option
[shpub.git] / src / shpub / Command / Like.php
index 5b456f955a56de5688d94af4e6051cf9d522b04d..ad19b8f529838a4014f50bc70420bff4eb1932b1 100644 (file)
@@ -3,16 +3,6 @@ namespace shpub;
 
 class Command_Like extends Command_AbstractProps
 {
-    /**
-     * @var Config
-     */
-    protected $cfg;
-
-    public function __construct($cfg)
-    {
-        $this->cfg = $cfg;
-    }
-
     public static function opts(\Console_CommandLine $optParser)
     {
         $cmd = $optParser->addCommand('like');
@@ -34,8 +24,8 @@ class Command_Like extends Command_AbstractProps
         }
 
         $req = new Request($this->cfg->host, $this->cfg);
-        $req->req->addPostParameter('h', 'entry');
-        $req->req->addPostParameter('like-of', $url);
+        $req->setType('entry');
+        $req->addProperty('like-of', $url);
 
         $this->handleGenericOptions($cmdRes, $req);
         $res = $req->send();