From c10b5a0519b345a525d39098c769799843ef4a88 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gabriel=20Ostroluck=C3=BD?= Date: Fri, 7 Aug 2020 13:49:27 +0200 Subject: [PATCH] Fix invalid return types in OAuthService --- lib/Service/OAuthService.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Service/OAuthService.php b/lib/Service/OAuthService.php index 4b95f2f00..b745ad987 100644 --- a/lib/Service/OAuthService.php +++ b/lib/Service/OAuthService.php @@ -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) { @@ -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) {