*/ class Starring extends AbstractApi { /** * List repositories starred by the authenticated user. * * @link https://developer.github.com/v3/activity/starring/ * * @param int $page * @param int $perPage * * @return array */ public function all($page = 1, $perPage = 30) { return $this->get('/user/starred', [ 'page' => $page, 'per_page' => $perPage, ]); } /** * Check that the authenticated user starres a repository. * * @link https://developer.github.com/v3/activity/starring/ * * @param string $username the user who owns the repo * @param string $repository the name of the repo * * @return array */ public function check($username, $repository) { return $this->get('/user/starred/'.rawurlencode($username).'/'.rawurlencode($repository)); } /** * Make the authenticated user star a repository. * * @link https://developer.github.com/v3/activity/starring/ * * @param string $username the user who owns the repo * @param string $repository the name of the repo * * @return array */ public function star($username, $repository) { return $this->put('/user/starred/'.rawurlencode($username).'/'.rawurlencode($repository)); } /** * Make the authenticated user unstar a repository. * * @link https://developer.github.com/v3/activity/starring * * @param string $username the user who owns the repo * @param string $repository the name of the repo * * @return array */ public function unstar($username, $repository) { return $this->delete('/user/starred/'.rawurlencode($username).'/'.rawurlencode($repository)); } }