@@ -21,10 +21,10 @@ class Issue extends AbstractApi
2121 * List issues by username, repo and state
2222 * @link http://developer.github.com/v3/issues/
2323 *
24- * @param string $username the username
25- * @param string $repository the repository
26- * @param array $params the additional parameters like milestone, assignees, labels, sort, direction
27- * @return array list of issues found
24+ * @param string $username the username
25+ * @param string $repository the repository
26+ * @param array $params the additional parameters like milestone, assignees, labels, sort, direction
27+ * @return array list of issues found
2828 */
2929 public function all ($ username , $ repository , array $ params = array ())
3030 {
@@ -35,12 +35,12 @@ public function all($username, $repository, array $params = array())
3535 * Search issues by username, repo, state and keyword
3636 * @link http://developer.github.com/v3/search/#search-issues
3737 *
38- * @param string $username the username
39- * @param string $repository the repository
40- * @param string $state the issue state, can be open or closed
41- * @param string $keyword the keyword to filter issues by
38+ * @param string $username the username
39+ * @param string $repository the repository
40+ * @param string $state the issue state, can be open or closed
41+ * @param string $keyword the keyword to filter issues by
4242 *
43- * @return array list of issues found
43+ * @return array list of issues found
4444 */
4545 public function find ($ username , $ repository , $ state , $ keyword )
4646 {
@@ -55,10 +55,10 @@ public function find($username, $repository, $state, $keyword)
5555 * List issues by organization
5656 * @link http://developer.github.com/v3/issues/
5757 *
58- * @param string $organization the organization
59- * @param string $state the issue state, can be open or closed
60- * @param array $params the additional parameters like milestone, assignees, labels, sort, direction
61- * @return array list of issues found
58+ * @param string $organization the organization
59+ * @param string $state the issue state, can be open or closed
60+ * @param array $params the additional parameters like milestone, assignees, labels, sort, direction
61+ * @return array list of issues found
6262 */
6363 public function org ($ organization , $ state , array $ params = array ())
6464 {
@@ -73,10 +73,10 @@ public function org($organization, $state, array $params = array())
7373 * Get extended information about an issue by its username, repo and number
7474 * @link http://developer.github.com/v3/issues/
7575 *
76- * @param string $username the username
77- * @param string $repository the repository
78- * @param string $id the issue number
79- * @return array information about the issue
76+ * @param string $username the username
77+ * @param string $repository the repository
78+ * @param string $id the issue number
79+ * @return array information about the issue
8080 */
8181 public function show ($ username , $ repository , $ id )
8282 {
@@ -88,10 +88,10 @@ public function show($username, $repository, $id)
8888 * The issue is assigned to the authenticated user. Requires authentication.
8989 * @link http://developer.github.com/v3/issues/
9090 *
91- * @param string $username the username
92- * @param string $repository the repository
93- * @param array $params the new issue data
94- * @return array information about the issue
91+ * @param string $username the username
92+ * @param string $repository the repository
93+ * @param array $params the new issue data
94+ * @return array information about the issue
9595 *
9696 * @throws MissingArgumentException
9797 */
@@ -108,12 +108,12 @@ public function create($username, $repository, array $params)
108108 * Update issue information's by username, repo and issue number. Requires authentication.
109109 * @link http://developer.github.com/v3/issues/
110110 *
111- * @param string $username the username
112- * @param string $repository the repository
113- * @param string $id the issue number
114- * @param array $params key=>value user attributes to update.
115- * key can be title or body
116- * @return array information about the issue
111+ * @param string $username the username
112+ * @param string $repository the repository
113+ * @param string $id the issue number
114+ * @param array $params key=>value user attributes to update.
115+ * key can be title or body
116+ * @return array information about the issue
117117 */
118118 public function update ($ username , $ repository , $ id , array $ params )
119119 {
0 commit comments