From 2fd3a0c3ea59c042b8cb24dd38a8a87abff8f819 Mon Sep 17 00:00:00 2001 From: Olivier Bellone Date: Sun, 24 Jun 2018 17:23:54 +0200 Subject: [PATCH] Fix #485 --- lib/Account.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Account.php b/lib/Account.php index 417b1d0e3..0fd55cb93 100644 --- a/lib/Account.php +++ b/lib/Account.php @@ -119,7 +119,7 @@ public function deauthorize($clientId = null, $opts = null) 'client_id' => $clientId, 'stripe_user_id' => $this->id, ]; - OAuth::deauthorize($params, $opts); + return OAuth::deauthorize($params, $opts); } /**