We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93684a1 commit 3bff763Copy full SHA for 3bff763
lib/Github/Api/Organization.php
@@ -74,4 +74,18 @@ public function teams()
74
{
75
return new Teams($this->client);
76
}
77
+
78
+ /**
79
+ * @link http://developer.github.com/v3/issues/#list-issues
80
+ *
81
+ * @param $organization
82
+ * @param array $params
83
+ * @param int $page
84
85
+ * @return array
86
+ */
87
+ public function issues($organization, array $params = array(), $page = 1)
88
+ {
89
+ return $this->get('orgs/'.rawurlencode($organization).'/issues', array_merge(array('page' => $page), $params));
90
+ }
91
0 commit comments