Liste de tous les membres
Description détaillée
Définition à la ligne 19 du fichier forks.php.
Documentation des fonctions membres
JGithubForks::create |
( |
|
$user, |
|
|
|
$repo, |
|
|
|
$org = '' |
|
) |
| |
Method to fork a repository.
- Paramètres:
-
string | $user | The name of the owner of the GitHub repository. |
string | $repo | The name of the GitHub repository. |
string | $org | The organization to fork the repo into. By default it is forked to the current user. |
- Renvoie:
- object
- Depuis:
- 11.4
- Exceptions:
-
Définition à la ligne 33 du fichier forks.php.
{
$path = '/repos/' . $user . '/' . $repo . '/forks';
if (strlen($org) > 0)
{
$data = json_encode(
array('org' => $org)
);
}
else
{
$data = json_encode(array());
}
$response = $this->client->post($this->
fetchUrl($path), $data);
if ($response->code != 202)
{
$error = json_decode($response->body);
throw new DomainException($error->message, $response->code);
}
return json_decode($response->body);
}
JGithubForks::getList |
( |
|
$user, |
|
|
|
$repo, |
|
|
|
$page = 0 , |
|
|
|
$limit = 0 |
|
) |
| |
Method to list forks for a repository.
- Paramètres:
-
string | $user | The name of the owner of the GitHub repository. |
string | $repo | The name of the GitHub repository. |
integer | $page | Page to request |
integer | $limit | Number of results to return per page |
- Renvoie:
- array
- Depuis:
- 11.4
- Exceptions:
-
Définition à la ligne 76 du fichier forks.php.
{
$path = '/repos/' . $user . '/' . $repo . '/forks';
$response = $this->client->get($this->
fetchUrl($path, $page, $limit));
if ($response->code != 200)
{
$error = json_decode($response->body);
throw new DomainException($error->message, $response->code);
}
return json_decode($response->body);
}
La documentation de cette classe a été générée à partir du fichier suivant :