Gush\ThirdParty\Gitlab\Adapter\GitLabRepoAdapter::createComment PHP Метод

createComment() публичный Метод

public createComment ( $id, $message )
    public function createComment($id, $message)
    {
        $comment = $this->api('merge_requests')->addComment($this->getCurrentProject()->id, $id, ['body' => $message]);
        return sprintf('%s#note_%d', $this->getPullRequestUrl($id), $comment->id);
    }