Gush\Application::getIssueTracker PHP 메소드

getIssueTracker() 공개 메소드

Get the IssueTracker adapter.
public getIssueTracker ( ) : Gush\Adapter\IssueTracker
리턴 Gush\Adapter\IssueTracker
    public function getIssueTracker()
    {
        if (null === $this->issueTracker) {
            throw new \RuntimeException('No issue-adapter set, make sure the current command implements "Gush\\Feature\\IssueTrackerRepoFeature".');
        }
        return $this->issueTracker;
    }