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; }