Gitlab\Api\Repositories::commitComments PHP Method

commitComments() public method

public commitComments ( integer $project_id, string $sha, integer $page, integer $per_page = self::PER_PAGE ) : mixed
$project_id integer
$sha string
$page integer
$per_page integer
return mixed
    public function commitComments($project_id, $sha, $page = 0, $per_page = self::PER_PAGE)
    {
        return $this->get($this->getProjectPath($project_id, 'repository/commits/' . $this->encodePath($sha) . '/comments'), array('page' => $page, 'per_page' => $per_page));
    }