<?php
namespace ContainerXxPsfln;
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 getApiKey_ProvideService extends App_KernelDevDebugContainer
{
/**
* Gets the public 'apiKey.provide' shared service.
*
* @return \AdminBundle\Security\ApiKeyUserProvider
*/
public static function do($container, $lazyLoad = true)
{
include_once \dirname(__DIR__, 4).'/vendor/symfony/security-core/User/UserProviderInterface.php';
include_once \dirname(__DIR__, 4).'/src/AdminBundle/Security/ApiKeyUserProvider.php';
$a = ($container->services['user.repository'] ?? $container->load('getUser_RepositoryService'));
if (isset($container->services['apiKey.provide'])) {
return $container->services['apiKey.provide'];
}
return $container->services['apiKey.provide'] = new \AdminBundle\Security\ApiKeyUserProvider($a);
}
}