<?php
namespace ContainerNPAlMbu;
use Symfony\Component\DependencyInjection\Argument\RewindableGenerator;
use Symfony\Component\DependencyInjection\Exception\RuntimeException;
/**
* @internal This class has been auto-generated by the Symfony Dependency Injection Component.
*/
class getPayment_ServiceService extends App_KernelDevDebugContainer
{
/**
* Gets the public 'payment.service' shared service.
*
* @return \AdminBundle\Services\PaymentService
*/
public static function do($container, $lazyLoad = true)
{
include_once \dirname(__DIR__, 4).'/src/AdminBundle/Services/PaymentService.php';
include_once \dirname(__DIR__, 4).'/src/AdminBundle/Services/PaymentManagerInterface.php';
include_once \dirname(__DIR__, 4).'/src/AdminBundle/Helpers/StripeManager.php';
include_once \dirname(__DIR__, 4).'/src/AdminBundle/Helpers/MandrillManager.php';
$a = ($container->services['doctrine.orm.default_entity_manager'] ?? $container->getDoctrine_Orm_DefaultEntityManagerService());
if (isset($container->services['payment.service'])) {
return $container->services['payment.service'];
}
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'))));
}
}