diff --git a/lib/Github/Api/CurrentUser.php b/lib/Github/Api/CurrentUser.php index 6237eb44393..dba5325e5e6 100644 --- a/lib/Github/Api/CurrentUser.php +++ b/lib/Github/Api/CurrentUser.php @@ -100,4 +100,14 @@ public function watched($page = 1) 'page' => $page )); } + + /** + * @link http://developer.github.com/changes/2012-9-5-watcher-api/ + */ + public function starred($page = 1) + { + return $this->get('user/starred', array( + 'page' => $page + )); + } }