Gitlab\Api\Issues::showComment PHP Method

showComment() public method

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