Liste de tous les membres
Description détaillée
Définition à la ligne 32 du fichier github.php.
Documentation des constructeurs et destructeur
Constructor.
- Paramètres:
-
- Depuis:
- 11.3
Définition à la ligne 126 du fichier github.php.
{
$this->options = isset($options) ? $options :
new JRegistry;
$this->client = isset($client) ? $client :
new JGithubHttp($this->options);
$this->options->def('api.url', 'https://api.github.com');
}
Documentation des fonctions membres
Magic method to lazily create API objects
- Paramètres:
-
string | $name | Name of property to retrieve |
- Renvoie:
- JGithubObject GitHub API object (gists, issues, pulls, etc).
- Depuis:
- 11.3
- Exceptions:
-
Définition à la ligne 145 du fichier github.php.
{
$class = 'JGithub' . ucfirst($name);
if (class_exists($class))
{
if (false == isset($this->$name))
{
$this->$name = new $class($this->options, $this->client);
}
return $this->$name;
}
throw new InvalidArgumentException(sprintf('Argument %s produced an invalid class name: %s', $name, $class));
}
JGithub::getOption |
( |
|
$key | ) |
|
Get an option from the JGitHub instance.
- Paramètres:
-
string | $key | The name of the option to get. |
- Renvoie:
- mixed The option value.
- Depuis:
- 11.3
Définition à la ligne 171 du fichier github.php.
{
return $this->options->get($key);
}
JGithub::setOption |
( |
|
$key, |
|
|
|
$value |
|
) |
| |
Set an option for the JGitHub instance.
- Paramètres:
-
string | $key | The name of the option to set. |
mixed | $value | The option value to set. |
- Renvoie:
- JGitHub This object for method chaining.
- Depuis:
- 11.3
Définition à la ligne 186 du fichier github.php.
{
$this->options->set($key, $value);
return $this;
}
Documentation des données membres
La documentation de cette classe a été générée à partir du fichier suivant :