radarrplexorganizrnginxsonarrdashboardheimdallembycouchpotatonzbgetbookmarkapplication-dashboardmuximuxlandingpagestartpagelandinghtpcserverhomepagesabnzbd
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
981 B
52 lines
981 B
6 years ago
|
<?php
|
||
|
|
||
|
namespace Github\Api;
|
||
|
|
||
|
use Github\Api\Enterprise\License;
|
||
|
use Github\Api\Enterprise\ManagementConsole;
|
||
|
use Github\Api\Enterprise\Stats;
|
||
|
use Github\Api\Enterprise\UserAdmin;
|
||
|
|
||
|
/**
|
||
|
* Getting information about a GitHub Enterprise instance.
|
||
|
*
|
||
|
* @link https://developer.github.com/v3/enterprise/
|
||
|
*
|
||
|
* @author Joseph Bielawski <stloyd@gmail.com>
|
||
|
* @author Guillermo A. Fisher <guillermoandraefisher@gmail.com>
|
||
|
*/
|
||
|
class Enterprise extends AbstractApi
|
||
|
{
|
||
|
/**
|
||
|
* @return Stats
|
||
|
*/
|
||
|
public function stats()
|
||
|
{
|
||
|
return new Stats($this->client);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return License
|
||
|
*/
|
||
|
public function license()
|
||
|
{
|
||
|
return new License($this->client);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return ManagementConsole
|
||
|
*/
|
||
|
public function console()
|
||
|
{
|
||
|
return new ManagementConsole($this->client);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return UserAdmin
|
||
|
*/
|
||
|
public function userAdmin()
|
||
|
{
|
||
|
return new UserAdmin($this->client);
|
||
|
}
|
||
|
}
|