コード例 #1
0
ファイル: ProjectController.php プロジェクト: ntoniazzi/PHPCI
 /**
  * Get an array of repositories from Github's API.
  */
 protected function githubRepositories()
 {
     $github = new Github();
     $response = new b8\Http\Response\JsonResponse();
     $response->setContent($github->getRepositories());
     return $response;
 }
コード例 #2
0
ファイル: ProjectController.php プロジェクト: bztrn/PHPCI
 /**
  * Get an array of repositories from Github's API.
  */
 protected function githubRepositories()
 {
     $github = new Github();
     die(json_encode($github->getRepositories()));
 }