Skip to content

Commit

Permalink
Merge pull request #991 from ostrolucky/patch-1
Browse files Browse the repository at this point in the history
Fix invalid return types in OAuthService
  • Loading branch information
richardm-stripe authored Aug 11, 2020
2 parents fd57205 + c10b5a0 commit 588eea8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Service/OAuthService.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public function authorizeUrl($params = null, $opts = null)
*
* @throws \Stripe\Exception\OAuth\OAuthErrorException if the request fails
*
* @return StripeObject object containing the response from the API
* @return \Stripe\StripeObject object containing the response from the API
*/
public function token($params = null, $opts = null)
{
Expand All @@ -73,7 +73,7 @@ public function token($params = null, $opts = null)
*
* @throws \Stripe\Exception\OAuth\OAuthErrorException if the request fails
*
* @return StripeObject object containing the response from the API
* @return \Stripe\StripeObject object containing the response from the API
*/
public function deauthorize($params = null, $opts = null)
{
Expand Down

0 comments on commit 588eea8

Please sign in to comment.