@@ -41,6 +41,8 @@ public function allInRepository($username, $repository, array $params = array())
4141 }
4242
4343 /**
44+ * Mark all notifications as read.
45+ *
4446 * @link http://developer.github.com/v3/activity/notifications/#mark-as-read
4547 *
4648 * @param array $params
@@ -53,6 +55,8 @@ public function markAsReadAll(array $params = array())
5355 }
5456
5557 /**
58+ * Mark all notifications for a repository as read.
59+ *
5660 * @link http://developer.github.com/v3/activity/notifications/#mark-notifications-as-read-in-a-repository
5761 *
5862 * @param string $username the user who owns the repo
@@ -67,6 +71,8 @@ public function markAsReadInRepository($username, $repository, array $params = a
6771 }
6872
6973 /**
74+ * Mark a notification as read.
75+ *
7076 * @link http://developer.github.com/v3/activity/notifications/#mark-a-thread-as-read
7177 *
7278 * @param string $id the notification number
@@ -80,6 +86,8 @@ public function markAsRead($id, array $params)
8086 }
8187
8288 /**
89+ * Show a notification.
90+ *
8391 * @link http://developer.github.com/v3/activity/notifications/#view-a-single-thread
8492 *
8593 * @param string $id the notification number
@@ -92,6 +100,8 @@ public function show($id)
92100 }
93101
94102 /**
103+ * Show a subscription.
104+ *
95105 * @link http://developer.github.com/v3/activity/notifications/#get-a-thread-subscription
96106 *
97107 * @param string $id the notification number
@@ -104,6 +114,8 @@ public function showSubscription($id)
104114 }
105115
106116 /**
117+ * Create a subscription.
118+ *
107119 * @link http://developer.github.com/v3/activity/notifications/#set-a-thread-subscription
108120 *
109121 * @param string $id the notification number
@@ -117,6 +129,8 @@ public function createSubscription($id, array $params)
117129 }
118130
119131 /**
132+ * Delete a subscription.
133+ *
120134 * @link http://developer.github.com/v3/activity/notifications/#delete-a-thread-subscription
121135 *
122136 * @param string $id the notification number
0 commit comments