eZ\Publish\Core\MVC\Symfony\FieldType\RichText\Renderer::__construct PHP Метод

__construct() публичный Метод

public __construct ( eZ\Publish\API\Repository\Repository $repository, Symfony\Component\Security\Core\Authorization\AuthorizationCheckerInterface $authorizationChecker, eZ\Publish\Core\MVC\ConfigResolverInterface $configResolver, Symfony\Component\Templating\EngineInterface $templateEngine, string $tagConfigurationNamespace, string $embedConfigurationNamespace, Psr\Log\LoggerInterface $logger = null )
$repository eZ\Publish\API\Repository\Repository
$authorizationChecker Symfony\Component\Security\Core\Authorization\AuthorizationCheckerInterface
$configResolver eZ\Publish\Core\MVC\ConfigResolverInterface
$templateEngine Symfony\Component\Templating\EngineInterface
$tagConfigurationNamespace string
$embedConfigurationNamespace string
$logger Psr\Log\LoggerInterface
    public function __construct(Repository $repository, AuthorizationCheckerInterface $authorizationChecker, ConfigResolverInterface $configResolver, EngineInterface $templateEngine, $tagConfigurationNamespace, $embedConfigurationNamespace, LoggerInterface $logger = null)
    {
        $this->repository = $repository;
        $this->authorizationChecker = $authorizationChecker;
        $this->configResolver = $configResolver;
        $this->templateEngine = $templateEngine;
        $this->tagConfigurationNamespace = $tagConfigurationNamespace;
        $this->embedConfigurationNamespace = $embedConfigurationNamespace;
        $this->logger = $logger;
    }