Sindbad~EG File Manager
<?php
namespace Symfony\Config\Doctrine\Orm;
require_once __DIR__.\DIRECTORY_SEPARATOR.'EntityManagerConfig'.\DIRECTORY_SEPARATOR.'QueryCacheDriverConfig.php';
require_once __DIR__.\DIRECTORY_SEPARATOR.'EntityManagerConfig'.\DIRECTORY_SEPARATOR.'MetadataCacheDriverConfig.php';
require_once __DIR__.\DIRECTORY_SEPARATOR.'EntityManagerConfig'.\DIRECTORY_SEPARATOR.'ResultCacheDriverConfig.php';
require_once __DIR__.\DIRECTORY_SEPARATOR.'EntityManagerConfig'.\DIRECTORY_SEPARATOR.'EntityListenersConfig.php';
require_once __DIR__.\DIRECTORY_SEPARATOR.'EntityManagerConfig'.\DIRECTORY_SEPARATOR.'SecondLevelCacheConfig.php';
require_once __DIR__.\DIRECTORY_SEPARATOR.'EntityManagerConfig'.\DIRECTORY_SEPARATOR.'MappingConfig.php';
require_once __DIR__.\DIRECTORY_SEPARATOR.'EntityManagerConfig'.\DIRECTORY_SEPARATOR.'DqlConfig.php';
require_once __DIR__.\DIRECTORY_SEPARATOR.'EntityManagerConfig'.\DIRECTORY_SEPARATOR.'FilterConfig.php';
use Symfony\Component\Config\Definition\Exception\InvalidConfigurationException;
use Symfony\Component\Config\Loader\ParamConfigurator;
/**
* This class is automatically generated to help creating config.
*
* @experimental in 5.3
*/
class EntityManagerConfig
{
private $queryCacheDriver;
private $metadataCacheDriver;
private $resultCacheDriver;
private $entityListeners;
private $connection;
private $classMetadataFactoryName;
private $defaultRepositoryClass;
private $autoMapping;
private $namingStrategy;
private $quoteStrategy;
private $entityListenerResolver;
private $repositoryFactory;
private $schemaIgnoreClasses;
private $secondLevelCache;
private $hydrators;
private $mappings;
private $dql;
private $filters;
public function queryCacheDriver(array $value = []): \Symfony\Config\Doctrine\Orm\EntityManagerConfig\QueryCacheDriverConfig
{
if (null === $this->queryCacheDriver) {
$this->queryCacheDriver = new \Symfony\Config\Doctrine\Orm\EntityManagerConfig\QueryCacheDriverConfig($value);
} elseif ([] !== $value) {
throw new InvalidConfigurationException('The node created by "queryCacheDriver()" has already been initialized. You cannot pass values the second time you call queryCacheDriver().');
}
return $this->queryCacheDriver;
}
public function metadataCacheDriver(array $value = []): \Symfony\Config\Doctrine\Orm\EntityManagerConfig\MetadataCacheDriverConfig
{
if (null === $this->metadataCacheDriver) {
$this->metadataCacheDriver = new \Symfony\Config\Doctrine\Orm\EntityManagerConfig\MetadataCacheDriverConfig($value);
} elseif ([] !== $value) {
throw new InvalidConfigurationException('The node created by "metadataCacheDriver()" has already been initialized. You cannot pass values the second time you call metadataCacheDriver().');
}
return $this->metadataCacheDriver;
}
public function resultCacheDriver(array $value = []): \Symfony\Config\Doctrine\Orm\EntityManagerConfig\ResultCacheDriverConfig
{
if (null === $this->resultCacheDriver) {
$this->resultCacheDriver = new \Symfony\Config\Doctrine\Orm\EntityManagerConfig\ResultCacheDriverConfig($value);
} elseif ([] !== $value) {
throw new InvalidConfigurationException('The node created by "resultCacheDriver()" has already been initialized. You cannot pass values the second time you call resultCacheDriver().');
}
return $this->resultCacheDriver;
}
public function entityListeners(array $value = []): \Symfony\Config\Doctrine\Orm\EntityManagerConfig\EntityListenersConfig
{
if (null === $this->entityListeners) {
$this->entityListeners = new \Symfony\Config\Doctrine\Orm\EntityManagerConfig\EntityListenersConfig($value);
} elseif ([] !== $value) {
throw new InvalidConfigurationException('The node created by "entityListeners()" has already been initialized. You cannot pass values the second time you call entityListeners().');
}
return $this->entityListeners;
}
/**
* @default null
* @param ParamConfigurator|mixed $value
* @return $this
*/
public function connection($value): self
{
$this->connection = $value;
return $this;
}
/**
* @default 'Doctrine\\ORM\\Mapping\\ClassMetadataFactory'
* @param ParamConfigurator|mixed $value
* @return $this
*/
public function classMetadataFactoryName($value): self
{
$this->classMetadataFactoryName = $value;
return $this;
}
/**
* @default 'Doctrine\\ORM\\EntityRepository'
* @param ParamConfigurator|mixed $value
* @return $this
*/
public function defaultRepositoryClass($value): self
{
$this->defaultRepositoryClass = $value;
return $this;
}
/**
* @default false
* @param ParamConfigurator|mixed $value
* @return $this
*/
public function autoMapping($value): self
{
$this->autoMapping = $value;
return $this;
}
/**
* @default 'doctrine.orm.naming_strategy.default'
* @param ParamConfigurator|mixed $value
* @return $this
*/
public function namingStrategy($value): self
{
$this->namingStrategy = $value;
return $this;
}
/**
* @default 'doctrine.orm.quote_strategy.default'
* @param ParamConfigurator|mixed $value
* @return $this
*/
public function quoteStrategy($value): self
{
$this->quoteStrategy = $value;
return $this;
}
/**
* @default null
* @param ParamConfigurator|mixed $value
* @return $this
*/
public function entityListenerResolver($value): self
{
$this->entityListenerResolver = $value;
return $this;
}
/**
* @default 'doctrine.orm.container_repository_factory'
* @param ParamConfigurator|mixed $value
* @return $this
*/
public function repositoryFactory($value): self
{
$this->repositoryFactory = $value;
return $this;
}
/**
* @param ParamConfigurator|list<mixed|ParamConfigurator> $value
* @return $this
*/
public function schemaIgnoreClasses($value): self
{
$this->schemaIgnoreClasses = $value;
return $this;
}
public function secondLevelCache(array $value = []): \Symfony\Config\Doctrine\Orm\EntityManagerConfig\SecondLevelCacheConfig
{
if (null === $this->secondLevelCache) {
$this->secondLevelCache = new \Symfony\Config\Doctrine\Orm\EntityManagerConfig\SecondLevelCacheConfig($value);
} elseif ([] !== $value) {
throw new InvalidConfigurationException('The node created by "secondLevelCache()" has already been initialized. You cannot pass values the second time you call secondLevelCache().');
}
return $this->secondLevelCache;
}
/**
* @param ParamConfigurator|mixed $value
* @return $this
*/
public function hydrator(string $name, $value): self
{
$this->hydrators[$name] = $value;
return $this;
}
public function mapping(string $name, array $value = []): \Symfony\Config\Doctrine\Orm\EntityManagerConfig\MappingConfig
{
if (!isset($this->mappings[$name])) {
return $this->mappings[$name] = new \Symfony\Config\Doctrine\Orm\EntityManagerConfig\MappingConfig($value);
}
if ([] === $value) {
return $this->mappings[$name];
}
throw new InvalidConfigurationException('The node created by "mapping()" has already been initialized. You cannot pass values the second time you call mapping().');
}
public function dql(array $value = []): \Symfony\Config\Doctrine\Orm\EntityManagerConfig\DqlConfig
{
if (null === $this->dql) {
$this->dql = new \Symfony\Config\Doctrine\Orm\EntityManagerConfig\DqlConfig($value);
} elseif ([] !== $value) {
throw new InvalidConfigurationException('The node created by "dql()" has already been initialized. You cannot pass values the second time you call dql().');
}
return $this->dql;
}
public function filter(string $name, array $value = []): \Symfony\Config\Doctrine\Orm\EntityManagerConfig\FilterConfig
{
if (!isset($this->filters[$name])) {
return $this->filters[$name] = new \Symfony\Config\Doctrine\Orm\EntityManagerConfig\FilterConfig($value);
}
if ([] === $value) {
return $this->filters[$name];
}
throw new InvalidConfigurationException('The node created by "filter()" has already been initialized. You cannot pass values the second time you call filter().');
}
public function __construct(array $value = [])
{
if (isset($value['query_cache_driver'])) {
$this->queryCacheDriver = new \Symfony\Config\Doctrine\Orm\EntityManagerConfig\QueryCacheDriverConfig($value['query_cache_driver']);
unset($value['query_cache_driver']);
}
if (isset($value['metadata_cache_driver'])) {
$this->metadataCacheDriver = new \Symfony\Config\Doctrine\Orm\EntityManagerConfig\MetadataCacheDriverConfig($value['metadata_cache_driver']);
unset($value['metadata_cache_driver']);
}
if (isset($value['result_cache_driver'])) {
$this->resultCacheDriver = new \Symfony\Config\Doctrine\Orm\EntityManagerConfig\ResultCacheDriverConfig($value['result_cache_driver']);
unset($value['result_cache_driver']);
}
if (isset($value['entity_listeners'])) {
$this->entityListeners = new \Symfony\Config\Doctrine\Orm\EntityManagerConfig\EntityListenersConfig($value['entity_listeners']);
unset($value['entity_listeners']);
}
if (isset($value['connection'])) {
$this->connection = $value['connection'];
unset($value['connection']);
}
if (isset($value['class_metadata_factory_name'])) {
$this->classMetadataFactoryName = $value['class_metadata_factory_name'];
unset($value['class_metadata_factory_name']);
}
if (isset($value['default_repository_class'])) {
$this->defaultRepositoryClass = $value['default_repository_class'];
unset($value['default_repository_class']);
}
if (isset($value['auto_mapping'])) {
$this->autoMapping = $value['auto_mapping'];
unset($value['auto_mapping']);
}
if (isset($value['naming_strategy'])) {
$this->namingStrategy = $value['naming_strategy'];
unset($value['naming_strategy']);
}
if (isset($value['quote_strategy'])) {
$this->quoteStrategy = $value['quote_strategy'];
unset($value['quote_strategy']);
}
if (isset($value['entity_listener_resolver'])) {
$this->entityListenerResolver = $value['entity_listener_resolver'];
unset($value['entity_listener_resolver']);
}
if (isset($value['repository_factory'])) {
$this->repositoryFactory = $value['repository_factory'];
unset($value['repository_factory']);
}
if (isset($value['schema_ignore_classes'])) {
$this->schemaIgnoreClasses = $value['schema_ignore_classes'];
unset($value['schema_ignore_classes']);
}
if (isset($value['second_level_cache'])) {
$this->secondLevelCache = new \Symfony\Config\Doctrine\Orm\EntityManagerConfig\SecondLevelCacheConfig($value['second_level_cache']);
unset($value['second_level_cache']);
}
if (isset($value['hydrators'])) {
$this->hydrators = $value['hydrators'];
unset($value['hydrators']);
}
if (isset($value['mappings'])) {
$this->mappings = array_map(function ($v) { return new \Symfony\Config\Doctrine\Orm\EntityManagerConfig\MappingConfig($v); }, $value['mappings']);
unset($value['mappings']);
}
if (isset($value['dql'])) {
$this->dql = new \Symfony\Config\Doctrine\Orm\EntityManagerConfig\DqlConfig($value['dql']);
unset($value['dql']);
}
if (isset($value['filters'])) {
$this->filters = array_map(function ($v) { return new \Symfony\Config\Doctrine\Orm\EntityManagerConfig\FilterConfig($v); }, $value['filters']);
unset($value['filters']);
}
if ([] !== $value) {
throw new InvalidConfigurationException(sprintf('The following keys are not supported by "%s": ', __CLASS__).implode(', ', array_keys($value)));
}
}
public function toArray(): array
{
$output = [];
if (null !== $this->queryCacheDriver) {
$output['query_cache_driver'] = $this->queryCacheDriver->toArray();
}
if (null !== $this->metadataCacheDriver) {
$output['metadata_cache_driver'] = $this->metadataCacheDriver->toArray();
}
if (null !== $this->resultCacheDriver) {
$output['result_cache_driver'] = $this->resultCacheDriver->toArray();
}
if (null !== $this->entityListeners) {
$output['entity_listeners'] = $this->entityListeners->toArray();
}
if (null !== $this->connection) {
$output['connection'] = $this->connection;
}
if (null !== $this->classMetadataFactoryName) {
$output['class_metadata_factory_name'] = $this->classMetadataFactoryName;
}
if (null !== $this->defaultRepositoryClass) {
$output['default_repository_class'] = $this->defaultRepositoryClass;
}
if (null !== $this->autoMapping) {
$output['auto_mapping'] = $this->autoMapping;
}
if (null !== $this->namingStrategy) {
$output['naming_strategy'] = $this->namingStrategy;
}
if (null !== $this->quoteStrategy) {
$output['quote_strategy'] = $this->quoteStrategy;
}
if (null !== $this->entityListenerResolver) {
$output['entity_listener_resolver'] = $this->entityListenerResolver;
}
if (null !== $this->repositoryFactory) {
$output['repository_factory'] = $this->repositoryFactory;
}
if (null !== $this->schemaIgnoreClasses) {
$output['schema_ignore_classes'] = $this->schemaIgnoreClasses;
}
if (null !== $this->secondLevelCache) {
$output['second_level_cache'] = $this->secondLevelCache->toArray();
}
if (null !== $this->hydrators) {
$output['hydrators'] = $this->hydrators;
}
if (null !== $this->mappings) {
$output['mappings'] = array_map(function ($v) { return $v->toArray(); }, $this->mappings);
}
if (null !== $this->dql) {
$output['dql'] = $this->dql->toArray();
}
if (null !== $this->filters) {
$output['filters'] = array_map(function ($v) { return $v->toArray(); }, $this->filters);
}
return $output;
}
}
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists