From bdb0802a8b587a0510e563f8dc3635cbf1269a62 Mon Sep 17 00:00:00 2001 From: Vitalij Mik Date: Thu, 27 Jun 2024 11:49:01 +0200 Subject: [PATCH] NTR: fix stan --- src/Compatibility/Gateway/CompatibilityGatewayInterface.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/Compatibility/Gateway/CompatibilityGatewayInterface.php b/src/Compatibility/Gateway/CompatibilityGatewayInterface.php index 3b16926de..123d199cf 100644 --- a/src/Compatibility/Gateway/CompatibilityGatewayInterface.php +++ b/src/Compatibility/Gateway/CompatibilityGatewayInterface.php @@ -14,14 +14,15 @@ public function getSalesChannelID(SalesChannelContext $context): string; /** * @param string $salesChannelID - * @param ?string $token + * @param ?string $domainID + * @param string $token * @return SalesChannelContext */ public function getSalesChannelContext(string $salesChannelID, ?string $domainID, string $token): SalesChannelContext; /** * @param SalesChannelContext $context - * @return string + * @return ?string */ public function getDomainId(SalesChannelContext $context): ?string;