You are here

public function Github_Client::getOrganizationApi in Bibliography Module 7.2

Get the organization API

Return value

Github_Api_Organization the object API

File

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

Class

Github_Client
Simple yet very cool PHP Github client

Code

public function getOrganizationApi() {
  if (!isset($this->apis['organization'])) {
    $this->apis['organization'] = new Github_Api_Organization($this);
  }
  return $this->apis['organization'];
}