コード例 #1
0
ファイル: Git.php プロジェクト: sq3hll/github_Api
 public static function forkRepository($fork_url, $token)
 {
     $headers[] = sprintf('Authorization: token %s', $token);
     CurlComunication::simplePost($fork_url, $headers);
     return true;
 }