From 7e94e3afb8d0fcf8d15b35370ddab293ee38bfff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miko=C5=82aj=20Kr=C3=B3l?= Date: Tue, 6 Feb 2018 15:08:19 +0100 Subject: [PATCH] Fix type hinting issue --- src/Context/ShippingGatewayContext.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Context/ShippingGatewayContext.php b/src/Context/ShippingGatewayContext.php index 1e7a0d7..27efa4d 100644 --- a/src/Context/ShippingGatewayContext.php +++ b/src/Context/ShippingGatewayContext.php @@ -121,7 +121,7 @@ private function getExistingShippingGateway(int $id): ShippingGatewayInterface if (false === $shippingGateway instanceof ShippingGatewayInterface) { throw new ShippingGatewayNotFoundException(sprintf( - 'Gateway with %s id could not be found', + 'Gateway with %d id could not be found in the database.', $id )); }