Add "json" option
[shpub.git] / src / shpub / Command / Delete.php
index a13775aa603881141f838384f8e9042b224af05d..7735e218814740d9787642113e112a4a4d4c0bcc 100644 (file)
@@ -6,6 +6,7 @@ class Command_Delete extends Command_AbstractProps
     public static function opts(\Console_CommandLine $optParser)
     {
         $cmd = $optParser->addCommand('delete');
+        static::addOptJson($cmd);
         $cmd->addArgument(
             'url',
             [
@@ -23,8 +24,9 @@ class Command_Delete extends Command_AbstractProps
         }
 
         $req = new Request($this->cfg->host, $this->cfg);
-        $req->req->addPostParameter('action', 'delete');
-        $req->req->addPostParameter('url', $url);
+        $this->handleOptJson($cmdRes, $req);
+        $req->setAction('delete');
+        $req->setUrl($url);
 
         $res = $req->send();
         Log::info('Post deleted from server');