mirror of
https://github.com/linuxserver/Heimdall.git
synced 2025-11-14 11:52:58 +09:00
changes
This commit is contained in:
23
vendor/knplabs/github-api/lib/Github/Api/Meta.php
vendored
Normal file
23
vendor/knplabs/github-api/lib/Github/Api/Meta.php
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
namespace Github\Api;
|
||||
|
||||
/**
|
||||
* Getting GitHub service information.
|
||||
*
|
||||
* @link https://developer.github.com/v3/meta/
|
||||
*
|
||||
* @author Claude Dioudonnat <claude.dioudonnat@gmail.com>
|
||||
*/
|
||||
class Meta extends AbstractApi
|
||||
{
|
||||
/**
|
||||
* Get the ip address of the hook and git servers for the GitHub.com service.
|
||||
*
|
||||
* @return array Information about the service of GitHub.com
|
||||
*/
|
||||
public function service()
|
||||
{
|
||||
return $this->get('/meta');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user