Gitlab\Api\Repositories::createCommitComment PHP Méthode

createCommitComment() public méthode

public createCommitComment ( integer $project_id, string $sha, string $note, array $params = [] ) : mixed
$project_id integer
$sha string
$note string
$params array
Résultat mixed
    public function createCommitComment($project_id, $sha, $note, array $params = array())
    {
        $params['note'] = $note;
        return $this->post($this->getProjectPath($project_id, 'repository/commits/' . $this->encodePath($sha) . '/comments'), $params);
    }