Gitlab\Api\Issues::showComments PHP Method

showComments() public method

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