Files
Heimdall/vendor/knplabs/github-api/lib/Github/Api/Miscellaneous/Emojis.php
2018-10-18 15:59:38 +01:00

21 lines
346 B
PHP

<?php
namespace Github\Api\Miscellaneous;
use Github\Api\AbstractApi;
class Emojis extends AbstractApi
{
/**
* Lists all the emojis available to use on GitHub.
*
* @link https://developer.github.com/v3/emojis/
*
* @return array
*/
public function all()
{
return $this->get('/emojis');
}
}