30 lines
1.5 KiB
PHP
30 lines
1.5 KiB
PHP
<?php
|
|
|
|
namespace ContainerEvwr5zZ;
|
|
|
|
use Symfony\Component\DependencyInjection\Argument\RewindableGenerator;
|
|
use Symfony\Component\DependencyInjection\ContainerInterface;
|
|
use Symfony\Component\DependencyInjection\Exception\RuntimeException;
|
|
|
|
/*
|
|
* @internal This class has been auto-generated by the Symfony Dependency Injection Component.
|
|
*/
|
|
class getSecurity_Access_ExpressionVoterService extends App_KernelProdContainer
|
|
{
|
|
/*
|
|
* Gets the private 'security.access.expression_voter' shared service.
|
|
*
|
|
* @return \Symfony\Component\Security\Core\Authorization\Voter\ExpressionVoter
|
|
*/
|
|
public static function do($container, $lazyLoad = true)
|
|
{
|
|
$a = ($container->privates['security.authorization_checker'] ?? self::getSecurity_AuthorizationCheckerService($container));
|
|
|
|
if (isset($container->privates['security.access.expression_voter'])) {
|
|
return $container->privates['security.access.expression_voter'];
|
|
}
|
|
|
|
return $container->privates['security.access.expression_voter'] = new \Symfony\Component\Security\Core\Authorization\Voter\ExpressionVoter(new \Symfony\Component\Security\Core\Authorization\ExpressionLanguage(($container->privates['cache.security_expression_language'] ?? $container->load('getCache_SecurityExpressionLanguageService'))), ($container->privates['security.authentication.trust_resolver'] ??= new \Symfony\Component\Security\Core\Authentication\AuthenticationTrustResolver()), $a, new \Symfony\Component\Security\Core\Role\RoleHierarchy([]));
|
|
}
|
|
}
|