Skip to content

Commit

Permalink
set correct type
Browse files Browse the repository at this point in the history
  • Loading branch information
skoro committed Aug 27, 2024
1 parent c38cc1a commit ef7de59
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/Payment/Common/PaymentGatewayRegistryInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
namespace App\Payment\Common;

use App\Payment\Common\Exception\PaymentGatewayIsNotRegisteredException;
use App\Payment\LiqPay\Gateway;
use IteratorAggregate;

/**
Expand All @@ -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;
}

0 comments on commit ef7de59

Please sign in to comment.