Gush\ThirdParty\Gitlab\Adapter\GitLabIssueTracker::createComment PHP Method

createComment() public method

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