From 10ad9d015c3d80f1ce94622a299e6e48154b099e Mon Sep 17 00:00:00 2001 From: tavi toporjinschi Date: Fri, 31 Mar 2017 08:28:20 +0000 Subject: [PATCH] Missed injecting the service into gateway. --- src/Plugin/Commerce/PaymentGateway/ExpressCheckout.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Plugin/Commerce/PaymentGateway/ExpressCheckout.php b/src/Plugin/Commerce/PaymentGateway/ExpressCheckout.php index c37dba3..6bbb473 100644 --- a/src/Plugin/Commerce/PaymentGateway/ExpressCheckout.php +++ b/src/Plugin/Commerce/PaymentGateway/ExpressCheckout.php @@ -123,7 +123,8 @@ public static function create(ContainerInterface $container, array $configuratio $container->get('logger.factory'), $container->get('http_client'), $container->get('commerce_price.rounder'), - $container->get('commerce.time') + $container->get('commerce.time'), + $container->get('commerce_paypal.ipn_handler') ); }