url = $api_url; $this->token = $api_token; } public function users() { return new Request\Users($this->url, $this->token); } public function repos() { return new Request\Repos($this->url, $this->token); } public function user(string $name = "me") { return new Request\User($this->url, $this->token, $name); } public function __destruct() {} } ?>