public function Github_Client::getRepoApi in Bibliography Module 7.2
Get the repo API
Return value
Github_Api_Repo the repo API
File
- modules/
CiteProc/ Github/ Client.php, line 190
Class
- Github_Client
- Simple yet very cool PHP Github client
Code
public function getRepoApi() {
if (!isset($this->apis['repo'])) {
$this->apis['repo'] = new Github_Api_Repo($this);
}
return $this->apis['repo'];
}