Gitlab\Api\Issues::removeComment PHP Method

removeComment() public method

public removeComment ( integer $project_id, integer $issue_id, integer $note_id ) : mixed
$project_id integer
$issue_id integer
$note_id integer
return mixed
    public function removeComment($project_id, $issue_id, $note_id)
    {
        return $this->delete($this->getProjectPath($project_id, 'issues/' . $this->encodePath($issue_id) . '/notes/' . $this->encodePath($note_id)));
    }