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 a886a1b commit 0880dbdCopy full SHA for 0880dbd
doc/request_any_route.md
@@ -5,9 +5,10 @@ The method you need does not exist yet? You can access any GitHub route by using
5
For example:
6
7
```php
8
-$repo = $client->get('repos/show/ornicar/php-github-api');
+$client = new Github\Client();
9
+$repo = $client->getHttpClient()->get('repos/KnpLabs/php-github-api');
10
```
11
12
Returns an array describing the "php-github-api" repository.
13
-See all GitHub API routes: [http://develop.github.com/](http://develop.github.com/)
14
+See all GitHub API routes: [http://developer.github.com/](http://developer.github.com/)
0 commit comments