Skip to content

Commit c872f60

Browse files
AM63bshaffer
authored andcommitted
Incorrect @return line for Client::authorize
Was "@return void", whereas the authorize method does return a ClientInferface object in current release.
1 parent d1f7a45 commit c872f60

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Google/Client.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ public function createAuthUrl($scope = null)
327327
*
328328
* @param GuzzleHttp\ClientInterface $http the http client object.
329329
* @param GuzzleHttp\ClientInterface $authHttp an http client for authentication.
330-
* @return void
330+
* @return GuzzleHttp\ClientInterface the http client object
331331
*/
332332
public function authorize(ClientInterface $http = null, ClientInterface $authHttp = null)
333333
{

0 commit comments

Comments
 (0)