Skip to content

Commit

Permalink
Missed injecting the service into gateway.
Browse files Browse the repository at this point in the history
  • Loading branch information
vasike committed Mar 31, 2017
1 parent e3570ac commit 10ad9d0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Plugin/Commerce/PaymentGateway/ExpressCheckout.php
Original file line number Diff line number Diff line change
Expand Up @@ -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')
);
}

Expand Down

1 comment on commit 10ad9d0

@mglaman
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Wow, thanks. That was bad of me :(

Please sign in to comment.