From 1c8e9aa8ba73cfcaf34af4695d4092496a81ba89 Mon Sep 17 00:00:00 2001 From: Kamil Kokot Date: Mon, 13 Jan 2020 12:25:24 +0100 Subject: [PATCH] Fix typo in PromotionCouponFactoryInterface --- .../Promotion/Factory/PromotionCouponFactoryInterface.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Sylius/Component/Promotion/Factory/PromotionCouponFactoryInterface.php b/src/Sylius/Component/Promotion/Factory/PromotionCouponFactoryInterface.php index 033354aa792..ec8653ada2e 100644 --- a/src/Sylius/Component/Promotion/Factory/PromotionCouponFactoryInterface.php +++ b/src/Sylius/Component/Promotion/Factory/PromotionCouponFactoryInterface.php @@ -22,5 +22,5 @@ interface PromotionCouponFactoryInterface extends FactoryInterface /** * @throws \InvalidArgumentException */ - public function createForPromotion(PromotionInterface $promotionId): PromotionCouponInterface; + public function createForPromotion(PromotionInterface $promotion): PromotionCouponInterface; }