(revert changes made to StripePaymentGateway)

This commit is contained in:
Adam Wathan
2017-01-17 15:46:38 -05:00
parent 19e44bb234
commit 74ed409e46
2 changed files with 10 additions and 4 deletions

View File

@@ -23,7 +23,7 @@ class StripePaymentGateway implements PaymentGateway
'currency' => 'usd',
], ['api_key' => $this->apiKey]);
} catch (InvalidRequest $e) {
return false;
throw new PaymentFailedException;
}
}
}