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

getIssue() public method

public getIssue ( $id )
    public function getIssue($id)
    {
        $issue = Issue::fromArray($this->client, $this->getCurrentProject(), $this->client->api('issues')->show($this->getCurrentProject()->id, $id));
        $url = $this->getIssueUrl($issue);
        $issue = $issue->toArray();
        $issue['url'] = $url;
        return $issue;
    }