51 lines
1,001 B
PHP
51 lines
1,001 B
PHP
<?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->getClient());
|
|
}
|
|
|
|
/**
|
|
* @return License
|
|
*/
|
|
public function license()
|
|
{
|
|
return new License($this->getClient());
|
|
}
|
|
|
|
/**
|
|
* @return ManagementConsole
|
|
*/
|
|
public function console()
|
|
{
|
|
return new ManagementConsole($this->getClient());
|
|
}
|
|
|
|
/**
|
|
* @return UserAdmin
|
|
*/
|
|
public function userAdmin()
|
|
{
|
|
return new UserAdmin($this->getClient());
|
|
}
|
|
}
|