Add shouldUseToken(): bool to PaymentResponseRequest

This commit is contained in:
Benjamin Beganović 2021-08-19 13:34:18 +02:00
parent 6186cc1420
commit 22ce56b7c5

View File

@ -56,4 +56,9 @@ class PaymentResponseRequest extends FormRequest
]); ]);
} }
} }
public function shouldUseToken(): bool
{
return (bool) $this->token;
}
} }