You are here

public function Github_Client::getIssueApi in Bibliography Module 7.2

Get the issue API

Return value

Github_Api_Issue the issue API

File

modules/CiteProc/Github/Client.php, line 162

Class

Github_Client
Simple yet very cool PHP Github client

Code

public function getIssueApi() {
  if (!isset($this->apis['issue'])) {
    $this->apis['issue'] = new Github_Api_Issue($this);
  }
  return $this->apis['issue'];
}