Added authorisation

This commit is contained in:
Lars Kusch 2021-10-05 16:34:19 +02:00
parent 6cc30a2454
commit b727a07476

View File

@ -26,7 +26,11 @@ class SEPA implements MethodInterface
{
$this->stripe = $stripe;
}
public function authorizeView(array $data) { }
public function authorizeView($data)
{
return render('gateways.stripe.sofort.authorize', $data);
}
public function authorizeResponse(Request $request) { }