for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace FlexyProject\GitHub\Receiver\Activity;
/**
* The Atom feeds API class provide access to a list of Atom feeds available for the authenticated user.
*
* @link https://developer.github.com/v3/activity/feeds/
* @package GitHub\Receiver\Activity
*/
class Feeds extends AbstractActivity
{
* List Feeds
* @link https://developer.github.com/v3/activity/feeds/#list-feeds
* @return array
public function listFeeds(): array
return $this->getApi()->request(sprintf('/feeds'));
}