From ef7de59a789bf7d728176ac1a29aa5ab1f46466f Mon Sep 17 00:00:00 2001 From: Oleksii Skorobogatko Date: Tue, 27 Aug 2024 21:43:35 +0300 Subject: [PATCH] set correct type --- src/Payment/Common/PaymentGatewayRegistryInterface.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Payment/Common/PaymentGatewayRegistryInterface.php b/src/Payment/Common/PaymentGatewayRegistryInterface.php index 6726d56..248b2bb 100644 --- a/src/Payment/Common/PaymentGatewayRegistryInterface.php +++ b/src/Payment/Common/PaymentGatewayRegistryInterface.php @@ -5,7 +5,6 @@ namespace App\Payment\Common; use App\Payment\Common\Exception\PaymentGatewayIsNotRegisteredException; -use App\Payment\LiqPay\Gateway; use IteratorAggregate; /** @@ -23,7 +22,7 @@ public function getRegisteredGateways(): iterable; /** * @param non-empty-string $gatewayId * @throws PaymentGatewayIsNotRegisteredException The gateway is not registered. - * @see Gateway::getId() + * @see GatewayInterface::getId() */ public function getGatewayById(string $gatewayId): GatewayInterface; }