Exemplo n.º 1
0
 public function newList($url, $params = '')
 {
     return new GithubList($this->connector, array($this, 'newFromJsonObject'), $url, UrlUtil::paramsToArray($params));
 }
Exemplo n.º 2
0
 public function newList($url, $params = '')
 {
     return new GithubList($this->connector, array($this, 'jsonToEntity'), $url, UrlUtil::paramsToArray($params));
 }
Exemplo n.º 3
0
 public function newIterator($url, $params = '')
 {
     return new PagedGithubIterator($this->connector, array($this, 'jsonToEntity'), $url, UrlUtil::paramsToArray($params));
 }