Skip to content

Commit

Permalink
Merge pull request #486 from stripe/ob-fix-485
Browse files Browse the repository at this point in the history
Make `Account.deauthorize()` return the `StripeObject` from the API
  • Loading branch information
ob-stripe authored Jun 24, 2018
2 parents c909900 + 2fd3a0c commit c5f57a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Account.php
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

/**
Expand Down

0 comments on commit c5f57a2

Please sign in to comment.