Skip to content

Commit

Permalink
Fix invalid return types in OAuthService
Browse files Browse the repository at this point in the history
  • Loading branch information
ostrolucky authored Aug 7, 2020
1 parent 37e768a commit c10b5a0
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 c10b5a0

Please sign in to comment.