Horde_Service_Scribd::delete PHP Method

delete() public method

Delete a document.
public delete ( integer $docId ) : true
$docId integer The document to delete
return true
    public function delete($docId)
    {
        $this->newRequest('docs.delete', array('doc_id' => $docId))->run();
        return true;
    }