From 65cfe71fcb0cccf98bafb71ebc656beaf101ff5d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Beganovi=C4=87?= Date: Tue, 26 Oct 2021 16:19:58 +0200 Subject: [PATCH] Typehint correct request class --- app/PaymentDrivers/Common/MethodInterface.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/PaymentDrivers/Common/MethodInterface.php b/app/PaymentDrivers/Common/MethodInterface.php index 0c839d602cdd..2febf2c2f030 100644 --- a/app/PaymentDrivers/Common/MethodInterface.php +++ b/app/PaymentDrivers/Common/MethodInterface.php @@ -12,7 +12,7 @@ namespace App\PaymentDrivers\Common; use App\Http\Requests\ClientPortal\Payments\PaymentResponseRequest; -use App\Http\Requests\Request; +use Illuminate\Http\Request; interface MethodInterface {