You are here

public function Github_Client::getUserApi in Bibliography Module 7.2

Get the user API

Return value

Github_Api_User the user API

File

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

Class

Github_Client
Simple yet very cool PHP Github client

Code

public function getUserApi() {
  if (!isset($this->apis['user'])) {
    $this->apis['user'] = new Github_Api_User($this);
  }
  return $this->apis['user'];
}