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 baee5cc commit 53c433dCopy full SHA for 53c433d
lib/Github/Client.php
@@ -29,8 +29,9 @@
29
* @method Api\Gists gist()
30
* @method Api\Gists gists()
31
* @method Api\Miscellaneous\Gitignore gitignore()
32
- * @method Api\Integrations integration()
33
- * @method Api\Integrations integrations()
+ * @method Api\Apps integration() (deprecated)
+ * @method Api\Apps integrations() (deprecated)
34
+ * @method Api\Apps apps()
35
* @method Api\Issue issue()
36
* @method Api\Issue issues()
37
* @method Api\Markdown markdown()
@@ -200,7 +201,8 @@ public function api($name)
200
201
202
case 'integration':
203
case 'integrations':
- $api = new Api\Integrations($this);
204
+ case 'apps':
205
+ $api = new Api\Apps($this);
206
break;
207
208
case 'issue':
0 commit comments