for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace FlexyProject\GitHub\Receiver\Miscellaneous;
/**
* This Emojis API class lets you list all the emojis available to use on GitHub.
*
* @link https://developer.github.com/v3/emojis/
* @package FlexyProject\GitHub\Receiver\Miscellaneous
*/
class Emojis extends AbstractMiscellaneous
{
* Lists all the emojis available to use on GitHub.
* @link https://developer.github.com/v3/emojis/#emojis
* @return array
public function get(): array
return $this->getApi()->request('/emojis');
}