Devin Smith 41e8600690 more deployment changes
partial #3787
added support for deployment to any repo path.
added tagging system
2014-11-18 16:08:23 -08:00

23 lines
469 B
PHP
Executable File

<?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 Informations about the service of GitHub.com
*/
public function service()
{
return $this->get('meta');
}
}