Skip to content

Commit 53c433d

Browse files
authored
Update Client.php
1 parent baee5cc commit 53c433d

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

lib/Github/Client.php

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,9 @@
2929
* @method Api\Gists gist()
3030
* @method Api\Gists gists()
3131
* @method Api\Miscellaneous\Gitignore gitignore()
32-
* @method Api\Integrations integration()
33-
* @method Api\Integrations integrations()
32+
* @method Api\Apps integration() (deprecated)
33+
* @method Api\Apps integrations() (deprecated)
34+
* @method Api\Apps apps()
3435
* @method Api\Issue issue()
3536
* @method Api\Issue issues()
3637
* @method Api\Markdown markdown()
@@ -200,7 +201,8 @@ public function api($name)
200201

201202
case 'integration':
202203
case 'integrations':
203-
$api = new Api\Integrations($this);
204+
case 'apps':
205+
$api = new Api\Apps($this);
204206
break;
205207

206208
case 'issue':

0 commit comments

Comments
 (0)