var/cache/dev/ContainerNPAlMbu/getPayment_ServiceService.php line 18

Open in your IDE?
  1. <?php
  2. namespace ContainerNPAlMbu;
  3. use Symfony\Component\DependencyInjection\Argument\RewindableGenerator;
  4. use Symfony\Component\DependencyInjection\Exception\RuntimeException;
  5. /**
  6. * @internal This class has been auto-generated by the Symfony Dependency Injection Component.
  7. */
  8. class getPayment_ServiceService extends App_KernelDevDebugContainer
  9. {
  10. /**
  11. * Gets the public 'payment.service' shared service.
  12. *
  13. * @return \AdminBundle\Services\PaymentService
  14. */
  15. public static function do($container, $lazyLoad = true)
  16. {
  17. include_once \dirname(__DIR__, 4).'/src/AdminBundle/Services/PaymentService.php';
  18. include_once \dirname(__DIR__, 4).'/src/AdminBundle/Services/PaymentManagerInterface.php';
  19. include_once \dirname(__DIR__, 4).'/src/AdminBundle/Helpers/StripeManager.php';
  20. include_once \dirname(__DIR__, 4).'/src/AdminBundle/Helpers/MandrillManager.php';
  21. $a = ($container->services['doctrine.orm.default_entity_manager'] ?? $container->getDoctrine_Orm_DefaultEntityManagerService());
  22. if (isset($container->services['payment.service'])) {
  23. return $container->services['payment.service'];
  24. }
  25. return $container->services['payment.service'] = new \AdminBundle\Services\PaymentService($a, ($container->services['braintree.manager'] ?? $container->load('getBraintree_ManagerService')), ($container->services['stripe.manager'] ?? ($container->services['stripe.manager'] = new \AdminBundle\Helpers\StripeManager('sk_test_fulcarx8eCw0X87IZ2K9jMe30025SRcgpb', 'pk_test_3BU5ZuZcFj9hCStqywRpNjbl00AbuphuCZ', 'development'))), ($container->services['mandrill.manager'] ?? ($container->services['mandrill.manager'] = new \AdminBundle\Helpers\MandrillManager('TESTKEY_broken'))));
  26. }
  27. }