Added return types

This commit is contained in:
Lars Kusch 2021-10-15 15:56:22 +02:00
parent 23ec133be9
commit 54985f4cf3
2 changed files with 2 additions and 2 deletions

View File

@ -189,7 +189,7 @@ class ACSS
}
public function processSuccessfulPayment(string $payment_intent)
public function processSuccessfulPayment(string $payment_intent): \Illuminate\Http\RedirectResponse
{
$data = [
'payment_method' => $payment_intent,

View File

@ -84,7 +84,7 @@ class BECS
}
public function processSuccessfulPayment(string $payment_intent)
public function processSuccessfulPayment(string $payment_intent): \Illuminate\Http\RedirectResponse
{
$data = [
'payment_method' => $payment_intent,