_usedProperties['secret'] = true; $this->secret = $value; return $this; } /** * Set true to enable support for the '_method' request parameter to determine the intended HTTP method on POST requests. Note: When using the HttpCache, you need to call the method in your front controller instead * @default false * @param ParamConfigurator|bool $value * @return $this */ public function httpMethodOverride($value): static { $this->_usedProperties['httpMethodOverride'] = true; $this->httpMethodOverride = $value; return $this; } /** * Set true to enable support for xsendfile in binary file responses. * @default false * @param ParamConfigurator|mixed $value * @return $this */ public function trustXSendfileTypeHeader($value): static { $this->_usedProperties['trustXSendfileTypeHeader'] = true; $this->trustXSendfileTypeHeader = $value; return $this; } /** * @default '%env(default::SYMFONY_IDE)%' * @param ParamConfigurator|mixed $value * @return $this */ public function ide($value): static { $this->_usedProperties['ide'] = true; $this->ide = $value; return $this; } /** * @default null * @param ParamConfigurator|bool $value * @return $this */ public function test($value): static { $this->_usedProperties['test'] = true; $this->test = $value; return $this; } /** * @default 'en' * @param ParamConfigurator|mixed $value * @return $this */ public function defaultLocale($value): static { $this->_usedProperties['defaultLocale'] = true; $this->defaultLocale = $value; return $this; } /** * Whether to use the Accept-Language HTTP header to set the Request locale (only when the "_locale" request attribute is not passed). * @default false * @param ParamConfigurator|bool $value * @return $this */ public function setLocaleFromAcceptLanguage($value): static { $this->_usedProperties['setLocaleFromAcceptLanguage'] = true; $this->setLocaleFromAcceptLanguage = $value; return $this; } /** * Whether to set the Content-Language HTTP header on the Response using the Request locale. * @default false * @param ParamConfigurator|bool $value * @return $this */ public function setContentLanguageFromLocale($value): static { $this->_usedProperties['setContentLanguageFromLocale'] = true; $this->setContentLanguageFromLocale = $value; return $this; } /** * @param ParamConfigurator|list $value * * @return $this */ public function enabledLocales(ParamConfigurator|array $value): static { $this->_usedProperties['enabledLocales'] = true; $this->enabledLocales = $value; return $this; } /** * @param ParamConfigurator|list|string $value * * @return $this */ public function trustedHosts(ParamConfigurator|string|array $value): static { $this->_usedProperties['trustedHosts'] = true; $this->trustedHosts = $value; return $this; } /** * @default null * @param ParamConfigurator|mixed $value * @return $this */ public function trustedProxies($value): static { $this->_usedProperties['trustedProxies'] = true; $this->trustedProxies = $value; return $this; } /** * @param ParamConfigurator|list|string $value * * @return $this */ public function trustedHeaders(ParamConfigurator|string|array $value): static { $this->_usedProperties['trustedHeaders'] = true; $this->trustedHeaders = $value; return $this; } /** * @default 'error_controller' * @param ParamConfigurator|mixed $value * @return $this */ public function errorController($value): static { $this->_usedProperties['errorController'] = true; $this->errorController = $value; return $this; } /** * HttpKernel will handle all kinds of \Throwable * @default true * @param ParamConfigurator|bool $value * @return $this */ public function handleAllThrowables($value): static { $this->_usedProperties['handleAllThrowables'] = true; $this->handleAllThrowables = $value; return $this; } /** * @default {"enabled":null} */ public function csrfProtection(array $value = []): \Symfony\Config\Framework\CsrfProtectionConfig { if (null === $this->csrfProtection) { $this->_usedProperties['csrfProtection'] = true; $this->csrfProtection = new \Symfony\Config\Framework\CsrfProtectionConfig($value); } elseif (0 < \func_num_args()) { throw new InvalidConfigurationException('The node created by "csrfProtection()" has already been initialized. You cannot pass values the second time you call csrfProtection().'); } return $this->csrfProtection; } /** * form configuration * @default {"enabled":true,"csrf_protection":{"enabled":null,"field_name":"_token"}} */ public function form(array $value = []): \Symfony\Config\Framework\FormConfig { if (null === $this->form) { $this->_usedProperties['form'] = true; $this->form = new \Symfony\Config\Framework\FormConfig($value); } elseif (0 < \func_num_args()) { throw new InvalidConfigurationException('The node created by "form()" has already been initialized. You cannot pass values the second time you call form().'); } return $this->form; } /** * @template TValue * @param TValue $value * HTTP cache configuration * @default {"enabled":false,"debug":"%kernel.debug%","private_headers":[],"skip_response_headers":[]} * @return \Symfony\Config\Framework\HttpCacheConfig|$this * @psalm-return (TValue is array ? \Symfony\Config\Framework\HttpCacheConfig : static) */ public function httpCache(array $value = []): \Symfony\Config\Framework\HttpCacheConfig|static { if (!\is_array($value)) { $this->_usedProperties['httpCache'] = true; $this->httpCache = $value; return $this; } if (!$this->httpCache instanceof \Symfony\Config\Framework\HttpCacheConfig) { $this->_usedProperties['httpCache'] = true; $this->httpCache = new \Symfony\Config\Framework\HttpCacheConfig($value); } elseif (0 < \func_num_args()) { throw new InvalidConfigurationException('The node created by "httpCache()" has already been initialized. You cannot pass values the second time you call httpCache().'); } return $this->httpCache; } /** * @template TValue * @param TValue $value * esi configuration * @default {"enabled":false} * @return \Symfony\Config\Framework\EsiConfig|$this * @psalm-return (TValue is array ? \Symfony\Config\Framework\EsiConfig : static) */ public function esi(array $value = []): \Symfony\Config\Framework\EsiConfig|static { if (!\is_array($value)) { $this->_usedProperties['esi'] = true; $this->esi = $value; return $this; } if (!$this->esi instanceof \Symfony\Config\Framework\EsiConfig) { $this->_usedProperties['esi'] = true; $this->esi = new \Symfony\Config\Framework\EsiConfig($value); } elseif (0 < \func_num_args()) { throw new InvalidConfigurationException('The node created by "esi()" has already been initialized. You cannot pass values the second time you call esi().'); } return $this->esi; } /** * @template TValue * @param TValue $value * ssi configuration * @default {"enabled":false} * @return \Symfony\Config\Framework\SsiConfig|$this * @psalm-return (TValue is array ? \Symfony\Config\Framework\SsiConfig : static) */ public function ssi(array $value = []): \Symfony\Config\Framework\SsiConfig|static { if (!\is_array($value)) { $this->_usedProperties['ssi'] = true; $this->ssi = $value; return $this; } if (!$this->ssi instanceof \Symfony\Config\Framework\SsiConfig) { $this->_usedProperties['ssi'] = true; $this->ssi = new \Symfony\Config\Framework\SsiConfig($value); } elseif (0 < \func_num_args()) { throw new InvalidConfigurationException('The node created by "ssi()" has already been initialized. You cannot pass values the second time you call ssi().'); } return $this->ssi; } /** * @template TValue * @param TValue $value * fragments configuration * @default {"enabled":false,"hinclude_default_template":null,"path":"\/_fragment"} * @return \Symfony\Config\Framework\FragmentsConfig|$this * @psalm-return (TValue is array ? \Symfony\Config\Framework\FragmentsConfig : static) */ public function fragments(array $value = []): \Symfony\Config\Framework\FragmentsConfig|static { if (!\is_array($value)) { $this->_usedProperties['fragments'] = true; $this->fragments = $value; return $this; } if (!$this->fragments instanceof \Symfony\Config\Framework\FragmentsConfig) { $this->_usedProperties['fragments'] = true; $this->fragments = new \Symfony\Config\Framework\FragmentsConfig($value); } elseif (0 < \func_num_args()) { throw new InvalidConfigurationException('The node created by "fragments()" has already been initialized. You cannot pass values the second time you call fragments().'); } return $this->fragments; } /** * @template TValue * @param TValue $value * profiler configuration * @default {"enabled":false,"collect":true,"collect_parameter":null,"only_exceptions":false,"only_main_requests":false,"dsn":"file:%kernel.cache_dir%\/profiler","collect_serializer_data":false} * @return \Symfony\Config\Framework\ProfilerConfig|$this * @psalm-return (TValue is array ? \Symfony\Config\Framework\ProfilerConfig : static) */ public function profiler(array $value = []): \Symfony\Config\Framework\ProfilerConfig|static { if (!\is_array($value)) { $this->_usedProperties['profiler'] = true; $this->profiler = $value; return $this; } if (!$this->profiler instanceof \Symfony\Config\Framework\ProfilerConfig) { $this->_usedProperties['profiler'] = true; $this->profiler = new \Symfony\Config\Framework\ProfilerConfig($value); } elseif (0 < \func_num_args()) { throw new InvalidConfigurationException('The node created by "profiler()" has already been initialized. You cannot pass values the second time you call profiler().'); } return $this->profiler; } /** * @template TValue * @param TValue $value * @default {"enabled":false,"workflows":[]} * @return \Symfony\Config\Framework\WorkflowsConfig|$this * @psalm-return (TValue is array ? \Symfony\Config\Framework\WorkflowsConfig : static) */ public function workflows(mixed $value = []): \Symfony\Config\Framework\WorkflowsConfig|static { if (!\is_array($value)) { $this->_usedProperties['workflows'] = true; $this->workflows = $value; return $this; } if (!$this->workflows instanceof \Symfony\Config\Framework\WorkflowsConfig) { $this->_usedProperties['workflows'] = true; $this->workflows = new \Symfony\Config\Framework\WorkflowsConfig($value); } elseif (0 < \func_num_args()) { throw new InvalidConfigurationException('The node created by "workflows()" has already been initialized. You cannot pass values the second time you call workflows().'); } return $this->workflows; } /** * @template TValue * @param TValue $value * router configuration * @default {"enabled":false,"cache_dir":"%kernel.build_dir%","default_uri":null,"http_port":80,"https_port":443,"strict_requirements":true,"utf8":true} * @return \Symfony\Config\Framework\RouterConfig|$this * @psalm-return (TValue is array ? \Symfony\Config\Framework\RouterConfig : static) */ public function router(array $value = []): \Symfony\Config\Framework\RouterConfig|static { if (!\is_array($value)) { $this->_usedProperties['router'] = true; $this->router = $value; return $this; } if (!$this->router instanceof \Symfony\Config\Framework\RouterConfig) { $this->_usedProperties['router'] = true; $this->router = new \Symfony\Config\Framework\RouterConfig($value); } elseif (0 < \func_num_args()) { throw new InvalidConfigurationException('The node created by "router()" has already been initialized. You cannot pass values the second time you call router().'); } return $this->router; } /** * @template TValue * @param TValue $value * session configuration * @default {"enabled":false,"storage_factory_id":"session.storage.factory.native","cookie_secure":"auto","cookie_httponly":true,"cookie_samesite":"lax","gc_probability":1,"metadata_update_threshold":0} * @return \Symfony\Config\Framework\SessionConfig|$this * @psalm-return (TValue is array ? \Symfony\Config\Framework\SessionConfig : static) */ public function session(array $value = []): \Symfony\Config\Framework\SessionConfig|static { if (!\is_array($value)) { $this->_usedProperties['session'] = true; $this->session = $value; return $this; } if (!$this->session instanceof \Symfony\Config\Framework\SessionConfig) { $this->_usedProperties['session'] = true; $this->session = new \Symfony\Config\Framework\SessionConfig($value); } elseif (0 < \func_num_args()) { throw new InvalidConfigurationException('The node created by "session()" has already been initialized. You cannot pass values the second time you call session().'); } return $this->session; } /** * @template TValue * @param TValue $value * request configuration * @default {"enabled":false,"formats":[]} * @return \Symfony\Config\Framework\RequestConfig|$this * @psalm-return (TValue is array ? \Symfony\Config\Framework\RequestConfig : static) */ public function request(array $value = []): \Symfony\Config\Framework\RequestConfig|static { if (!\is_array($value)) { $this->_usedProperties['request'] = true; $this->request = $value; return $this; } if (!$this->request instanceof \Symfony\Config\Framework\RequestConfig) { $this->_usedProperties['request'] = true; $this->request = new \Symfony\Config\Framework\RequestConfig($value); } elseif (0 < \func_num_args()) { throw new InvalidConfigurationException('The node created by "request()" has already been initialized. You cannot pass values the second time you call request().'); } return $this->request; } /** * @template TValue * @param TValue $value * assets configuration * @default {"enabled":false,"strict_mode":false,"version_strategy":null,"version":null,"version_format":"%%s?%%s","json_manifest_path":null,"base_path":"","base_urls":[],"packages":[]} * @return \Symfony\Config\Framework\AssetsConfig|$this * @psalm-return (TValue is array ? \Symfony\Config\Framework\AssetsConfig : static) */ public function assets(array $value = []): \Symfony\Config\Framework\AssetsConfig|static { if (!\is_array($value)) { $this->_usedProperties['assets'] = true; $this->assets = $value; return $this; } if (!$this->assets instanceof \Symfony\Config\Framework\AssetsConfig) { $this->_usedProperties['assets'] = true; $this->assets = new \Symfony\Config\Framework\AssetsConfig($value); } elseif (0 < \func_num_args()) { throw new InvalidConfigurationException('The node created by "assets()" has already been initialized. You cannot pass values the second time you call assets().'); } return $this->assets; } /** * @template TValue * @param TValue $value * Asset Mapper configuration * @default {"enabled":false,"paths":[],"excluded_patterns":[],"exclude_dotfiles":true,"server":true,"public_prefix":"\/assets\/","missing_import_mode":"warn","extensions":[],"importmap_path":"%kernel.project_dir%\/importmap.php","importmap_polyfill":"es-module-shims","importmap_script_attributes":[],"vendor_dir":"%kernel.project_dir%\/assets\/vendor"} * @return \Symfony\Config\Framework\AssetMapperConfig|$this * @psalm-return (TValue is array ? \Symfony\Config\Framework\AssetMapperConfig : static) */ public function assetMapper(array $value = []): \Symfony\Config\Framework\AssetMapperConfig|static { if (!\is_array($value)) { $this->_usedProperties['assetMapper'] = true; $this->assetMapper = $value; return $this; } if (!$this->assetMapper instanceof \Symfony\Config\Framework\AssetMapperConfig) { $this->_usedProperties['assetMapper'] = true; $this->assetMapper = new \Symfony\Config\Framework\AssetMapperConfig($value); } elseif (0 < \func_num_args()) { throw new InvalidConfigurationException('The node created by "assetMapper()" has already been initialized. You cannot pass values the second time you call assetMapper().'); } return $this->assetMapper; } /** * @template TValue * @param TValue $value * translator configuration * @default {"enabled":false,"fallbacks":[],"logging":false,"formatter":"translator.formatter.default","cache_dir":"%kernel.cache_dir%\/translations","default_path":"%kernel.project_dir%\/translations","paths":[],"pseudo_localization":{"enabled":false,"accents":true,"expansion_factor":1,"brackets":true,"parse_html":false,"localizable_html_attributes":[]},"providers":[]} * @return \Symfony\Config\Framework\TranslatorConfig|$this * @psalm-return (TValue is array ? \Symfony\Config\Framework\TranslatorConfig : static) */ public function translator(array $value = []): \Symfony\Config\Framework\TranslatorConfig|static { if (!\is_array($value)) { $this->_usedProperties['translator'] = true; $this->translator = $value; return $this; } if (!$this->translator instanceof \Symfony\Config\Framework\TranslatorConfig) { $this->_usedProperties['translator'] = true; $this->translator = new \Symfony\Config\Framework\TranslatorConfig($value); } elseif (0 < \func_num_args()) { throw new InvalidConfigurationException('The node created by "translator()" has already been initialized. You cannot pass values the second time you call translator().'); } return $this->translator; } /** * @template TValue * @param TValue $value * validation configuration * @default {"enabled":false,"enable_attributes":true,"static_method":["loadValidatorMetadata"],"translation_domain":"validators","email_validation_mode":"html5","mapping":{"paths":[]},"not_compromised_password":{"enabled":true,"endpoint":null},"auto_mapping":[]} * @return \Symfony\Config\Framework\ValidationConfig|$this * @psalm-return (TValue is array ? \Symfony\Config\Framework\ValidationConfig : static) */ public function validation(array $value = []): \Symfony\Config\Framework\ValidationConfig|static { if (!\is_array($value)) { $this->_usedProperties['validation'] = true; $this->validation = $value; return $this; } if (!$this->validation instanceof \Symfony\Config\Framework\ValidationConfig) { $this->_usedProperties['validation'] = true; $this->validation = new \Symfony\Config\Framework\ValidationConfig($value); } elseif (0 < \func_num_args()) { throw new InvalidConfigurationException('The node created by "validation()" has already been initialized. You cannot pass values the second time you call validation().'); } return $this->validation; } /** * @template TValue * @param TValue $value * @default {"enabled":false} * @return \Symfony\Config\Framework\AnnotationsConfig|$this * @psalm-return (TValue is array ? \Symfony\Config\Framework\AnnotationsConfig : static) */ public function annotations(array $value = []): \Symfony\Config\Framework\AnnotationsConfig|static { if (!\is_array($value)) { $this->_usedProperties['annotations'] = true; $this->annotations = $value; return $this; } if (!$this->annotations instanceof \Symfony\Config\Framework\AnnotationsConfig) { $this->_usedProperties['annotations'] = true; $this->annotations = new \Symfony\Config\Framework\AnnotationsConfig($value); } elseif (0 < \func_num_args()) { throw new InvalidConfigurationException('The node created by "annotations()" has already been initialized. You cannot pass values the second time you call annotations().'); } return $this->annotations; } /** * @template TValue * @param TValue $value * serializer configuration * @default {"enabled":false,"enable_attributes":true,"mapping":{"paths":[]},"default_context":[]} * @return \Symfony\Config\Framework\SerializerConfig|$this * @psalm-return (TValue is array ? \Symfony\Config\Framework\SerializerConfig : static) */ public function serializer(array $value = []): \Symfony\Config\Framework\SerializerConfig|static { if (!\is_array($value)) { $this->_usedProperties['serializer'] = true; $this->serializer = $value; return $this; } if (!$this->serializer instanceof \Symfony\Config\Framework\SerializerConfig) { $this->_usedProperties['serializer'] = true; $this->serializer = new \Symfony\Config\Framework\SerializerConfig($value); } elseif (0 < \func_num_args()) { throw new InvalidConfigurationException('The node created by "serializer()" has already been initialized. You cannot pass values the second time you call serializer().'); } return $this->serializer; } /** * Property access configuration * @default {"enabled":true,"magic_call":false,"magic_get":true,"magic_set":true,"throw_exception_on_invalid_index":false,"throw_exception_on_invalid_property_path":true} */ public function propertyAccess(array $value = []): \Symfony\Config\Framework\PropertyAccessConfig { if (null === $this->propertyAccess) { $this->_usedProperties['propertyAccess'] = true; $this->propertyAccess = new \Symfony\Config\Framework\PropertyAccessConfig($value); } elseif (0 < \func_num_args()) { throw new InvalidConfigurationException('The node created by "propertyAccess()" has already been initialized. You cannot pass values the second time you call propertyAccess().'); } return $this->propertyAccess; } /** * Type info configuration * @default {"enabled":true} */ public function typeInfo(array $value = []): \Symfony\Config\Framework\TypeInfoConfig { if (null === $this->typeInfo) { $this->_usedProperties['typeInfo'] = true; $this->typeInfo = new \Symfony\Config\Framework\TypeInfoConfig($value); } elseif (0 < \func_num_args()) { throw new InvalidConfigurationException('The node created by "typeInfo()" has already been initialized. You cannot pass values the second time you call typeInfo().'); } return $this->typeInfo; } /** * Property info configuration * @default {"enabled":true} */ public function propertyInfo(array $value = []): \Symfony\Config\Framework\PropertyInfoConfig { if (null === $this->propertyInfo) { $this->_usedProperties['propertyInfo'] = true; $this->propertyInfo = new \Symfony\Config\Framework\PropertyInfoConfig($value); } elseif (0 < \func_num_args()) { throw new InvalidConfigurationException('The node created by "propertyInfo()" has already been initialized. You cannot pass values the second time you call propertyInfo().'); } return $this->propertyInfo; } /** * Cache configuration * @default {"prefix_seed":"_%kernel.project_dir%.%kernel.container_class%","app":"cache.adapter.filesystem","system":"cache.adapter.system","directory":"%kernel.cache_dir%\/pools\/app","default_redis_provider":"redis:\/\/localhost","default_memcached_provider":"memcached:\/\/localhost","default_doctrine_dbal_provider":"database_connection","default_pdo_provider":null,"pools":[]} */ public function cache(array $value = []): \Symfony\Config\Framework\CacheConfig { if (null === $this->cache) { $this->_usedProperties['cache'] = true; $this->cache = new \Symfony\Config\Framework\CacheConfig($value); } elseif (0 < \func_num_args()) { throw new InvalidConfigurationException('The node created by "cache()" has already been initialized. You cannot pass values the second time you call cache().'); } return $this->cache; } /** * PHP errors handling configuration * @default {"log":true,"throw":true} */ public function phpErrors(array $value = []): \Symfony\Config\Framework\PhpErrorsConfig { if (null === $this->phpErrors) { $this->_usedProperties['phpErrors'] = true; $this->phpErrors = new \Symfony\Config\Framework\PhpErrorsConfig($value); } elseif (0 < \func_num_args()) { throw new InvalidConfigurationException('The node created by "phpErrors()" has already been initialized. You cannot pass values the second time you call phpErrors().'); } return $this->phpErrors; } /** * Exception handling configuration */ public function exception(string $class, array $value = []): \Symfony\Config\Framework\ExceptionConfig { if (!isset($this->exceptions[$class])) { $this->_usedProperties['exceptions'] = true; $this->exceptions[$class] = new \Symfony\Config\Framework\ExceptionConfig($value); } elseif (1 < \func_num_args()) { throw new InvalidConfigurationException('The node created by "exception()" has already been initialized. You cannot pass values the second time you call exception().'); } return $this->exceptions[$class]; } /** * @template TValue * @param TValue $value * web links configuration * @default {"enabled":false} * @return \Symfony\Config\Framework\WebLinkConfig|$this * @psalm-return (TValue is array ? \Symfony\Config\Framework\WebLinkConfig : static) */ public function webLink(array $value = []): \Symfony\Config\Framework\WebLinkConfig|static { if (!\is_array($value)) { $this->_usedProperties['webLink'] = true; $this->webLink = $value; return $this; } if (!$this->webLink instanceof \Symfony\Config\Framework\WebLinkConfig) { $this->_usedProperties['webLink'] = true; $this->webLink = new \Symfony\Config\Framework\WebLinkConfig($value); } elseif (0 < \func_num_args()) { throw new InvalidConfigurationException('The node created by "webLink()" has already been initialized. You cannot pass values the second time you call webLink().'); } return $this->webLink; } /** * @template TValue * @param TValue $value * Lock configuration * @default {"enabled":false,"resources":{"default":["flock"]}} * @return \Symfony\Config\Framework\LockConfig|$this * @psalm-return (TValue is array ? \Symfony\Config\Framework\LockConfig : static) */ public function lock(mixed $value = []): \Symfony\Config\Framework\LockConfig|static { if (!\is_array($value)) { $this->_usedProperties['lock'] = true; $this->lock = $value; return $this; } if (!$this->lock instanceof \Symfony\Config\Framework\LockConfig) { $this->_usedProperties['lock'] = true; $this->lock = new \Symfony\Config\Framework\LockConfig($value); } elseif (0 < \func_num_args()) { throw new InvalidConfigurationException('The node created by "lock()" has already been initialized. You cannot pass values the second time you call lock().'); } return $this->lock; } /** * @template TValue * @param TValue $value * Semaphore configuration * @default {"enabled":false,"resources":[]} * @return \Symfony\Config\Framework\SemaphoreConfig|$this * @psalm-return (TValue is array ? \Symfony\Config\Framework\SemaphoreConfig : static) */ public function semaphore(mixed $value = []): \Symfony\Config\Framework\SemaphoreConfig|static { if (!\is_array($value)) { $this->_usedProperties['semaphore'] = true; $this->semaphore = $value; return $this; } if (!$this->semaphore instanceof \Symfony\Config\Framework\SemaphoreConfig) { $this->_usedProperties['semaphore'] = true; $this->semaphore = new \Symfony\Config\Framework\SemaphoreConfig($value); } elseif (0 < \func_num_args()) { throw new InvalidConfigurationException('The node created by "semaphore()" has already been initialized. You cannot pass values the second time you call semaphore().'); } return $this->semaphore; } /** * @template TValue * @param TValue $value * Messenger configuration * @default {"enabled":false,"routing":[],"serializer":{"default_serializer":"messenger.transport.native_php_serializer","symfony_serializer":{"format":"json","context":[]}},"transports":[],"failure_transport":null,"stop_worker_on_signals":[],"default_bus":null,"buses":{"messenger.bus.default":{"default_middleware":{"enabled":true,"allow_no_handlers":false,"allow_no_senders":true},"middleware":[]}}} * @return \Symfony\Config\Framework\MessengerConfig|$this * @psalm-return (TValue is array ? \Symfony\Config\Framework\MessengerConfig : static) */ public function messenger(array $value = []): \Symfony\Config\Framework\MessengerConfig|static { if (!\is_array($value)) { $this->_usedProperties['messenger'] = true; $this->messenger = $value; return $this; } if (!$this->messenger instanceof \Symfony\Config\Framework\MessengerConfig) { $this->_usedProperties['messenger'] = true; $this->messenger = new \Symfony\Config\Framework\MessengerConfig($value); } elseif (0 < \func_num_args()) { throw new InvalidConfigurationException('The node created by "messenger()" has already been initialized. You cannot pass values the second time you call messenger().'); } return $this->messenger; } /** * @template TValue * @param TValue $value * Scheduler configuration * @default {"enabled":false} * @return \Symfony\Config\Framework\SchedulerConfig|$this * @psalm-return (TValue is array ? \Symfony\Config\Framework\SchedulerConfig : static) */ public function scheduler(array $value = []): \Symfony\Config\Framework\SchedulerConfig|static { if (!\is_array($value)) { $this->_usedProperties['scheduler'] = true; $this->scheduler = $value; return $this; } if (!$this->scheduler instanceof \Symfony\Config\Framework\SchedulerConfig) { $this->_usedProperties['scheduler'] = true; $this->scheduler = new \Symfony\Config\Framework\SchedulerConfig($value); } elseif (0 < \func_num_args()) { throw new InvalidConfigurationException('The node created by "scheduler()" has already been initialized. You cannot pass values the second time you call scheduler().'); } return $this->scheduler; } /** * Enabled by default when debug is enabled. * @default true * @param ParamConfigurator|bool $value * @return $this */ public function disallowSearchEngineIndex($value): static { $this->_usedProperties['disallowSearchEngineIndex'] = true; $this->disallowSearchEngineIndex = $value; return $this; } /** * @template TValue * @param TValue $value * HTTP Client configuration * @default {"enabled":true,"scoped_clients":[]} * @return \Symfony\Config\Framework\HttpClientConfig|$this * @psalm-return (TValue is array ? \Symfony\Config\Framework\HttpClientConfig : static) */ public function httpClient(mixed $value = []): \Symfony\Config\Framework\HttpClientConfig|static { if (!\is_array($value)) { $this->_usedProperties['httpClient'] = true; $this->httpClient = $value; return $this; } if (!$this->httpClient instanceof \Symfony\Config\Framework\HttpClientConfig) { $this->_usedProperties['httpClient'] = true; $this->httpClient = new \Symfony\Config\Framework\HttpClientConfig($value); } elseif (0 < \func_num_args()) { throw new InvalidConfigurationException('The node created by "httpClient()" has already been initialized. You cannot pass values the second time you call httpClient().'); } return $this->httpClient; } /** * Mailer configuration * @default {"enabled":true,"message_bus":null,"dsn":null,"transports":[],"headers":[]} */ public function mailer(array $value = []): \Symfony\Config\Framework\MailerConfig { if (null === $this->mailer) { $this->_usedProperties['mailer'] = true; $this->mailer = new \Symfony\Config\Framework\MailerConfig($value); } elseif (0 < \func_num_args()) { throw new InvalidConfigurationException('The node created by "mailer()" has already been initialized. You cannot pass values the second time you call mailer().'); } return $this->mailer; } /** * @default {"enabled":true,"vault_directory":"%kernel.project_dir%\/config\/secrets\/%kernel.runtime_environment%","local_dotenv_file":"%kernel.project_dir%\/.env.%kernel.environment%.local","decryption_env_var":"base64:default::SYMFONY_DECRYPTION_SECRET"} */ public function secrets(array $value = []): \Symfony\Config\Framework\SecretsConfig { if (null === $this->secrets) { $this->_usedProperties['secrets'] = true; $this->secrets = new \Symfony\Config\Framework\SecretsConfig($value); } elseif (0 < \func_num_args()) { throw new InvalidConfigurationException('The node created by "secrets()" has already been initialized. You cannot pass values the second time you call secrets().'); } return $this->secrets; } /** * @template TValue * @param TValue $value * Notifier configuration * @default {"enabled":false,"message_bus":null,"chatter_transports":[],"texter_transports":[],"notification_on_failed_messages":false,"channel_policy":[],"admin_recipients":[]} * @return \Symfony\Config\Framework\NotifierConfig|$this * @psalm-return (TValue is array ? \Symfony\Config\Framework\NotifierConfig : static) */ public function notifier(array $value = []): \Symfony\Config\Framework\NotifierConfig|static { if (!\is_array($value)) { $this->_usedProperties['notifier'] = true; $this->notifier = $value; return $this; } if (!$this->notifier instanceof \Symfony\Config\Framework\NotifierConfig) { $this->_usedProperties['notifier'] = true; $this->notifier = new \Symfony\Config\Framework\NotifierConfig($value); } elseif (0 < \func_num_args()) { throw new InvalidConfigurationException('The node created by "notifier()" has already been initialized. You cannot pass values the second time you call notifier().'); } return $this->notifier; } /** * @template TValue * @param TValue $value * Rate limiter configuration * @default {"enabled":false,"limiters":[]} * @return \Symfony\Config\Framework\RateLimiterConfig|$this * @psalm-return (TValue is array ? \Symfony\Config\Framework\RateLimiterConfig : static) */ public function rateLimiter(mixed $value = []): \Symfony\Config\Framework\RateLimiterConfig|static { if (!\is_array($value)) { $this->_usedProperties['rateLimiter'] = true; $this->rateLimiter = $value; return $this; } if (!$this->rateLimiter instanceof \Symfony\Config\Framework\RateLimiterConfig) { $this->_usedProperties['rateLimiter'] = true; $this->rateLimiter = new \Symfony\Config\Framework\RateLimiterConfig($value); } elseif (0 < \func_num_args()) { throw new InvalidConfigurationException('The node created by "rateLimiter()" has already been initialized. You cannot pass values the second time you call rateLimiter().'); } return $this->rateLimiter; } /** * @template TValue * @param TValue $value * Uid configuration * @default {"enabled":false,"default_uuid_version":7,"name_based_uuid_version":5,"time_based_uuid_version":7} * @return \Symfony\Config\Framework\UidConfig|$this * @psalm-return (TValue is array ? \Symfony\Config\Framework\UidConfig : static) */ public function uid(array $value = []): \Symfony\Config\Framework\UidConfig|static { if (!\is_array($value)) { $this->_usedProperties['uid'] = true; $this->uid = $value; return $this; } if (!$this->uid instanceof \Symfony\Config\Framework\UidConfig) { $this->_usedProperties['uid'] = true; $this->uid = new \Symfony\Config\Framework\UidConfig($value); } elseif (0 < \func_num_args()) { throw new InvalidConfigurationException('The node created by "uid()" has already been initialized. You cannot pass values the second time you call uid().'); } return $this->uid; } /** * @template TValue * @param TValue $value * HtmlSanitizer configuration * @default {"enabled":false,"sanitizers":[]} * @return \Symfony\Config\Framework\HtmlSanitizerConfig|$this * @psalm-return (TValue is array ? \Symfony\Config\Framework\HtmlSanitizerConfig : static) */ public function htmlSanitizer(array $value = []): \Symfony\Config\Framework\HtmlSanitizerConfig|static { if (!\is_array($value)) { $this->_usedProperties['htmlSanitizer'] = true; $this->htmlSanitizer = $value; return $this; } if (!$this->htmlSanitizer instanceof \Symfony\Config\Framework\HtmlSanitizerConfig) { $this->_usedProperties['htmlSanitizer'] = true; $this->htmlSanitizer = new \Symfony\Config\Framework\HtmlSanitizerConfig($value); } elseif (0 < \func_num_args()) { throw new InvalidConfigurationException('The node created by "htmlSanitizer()" has already been initialized. You cannot pass values the second time you call htmlSanitizer().'); } return $this->htmlSanitizer; } /** * @template TValue * @param TValue $value * Webhook configuration * @default {"enabled":false,"message_bus":"messenger.default_bus","routing":[]} * @return \Symfony\Config\Framework\WebhookConfig|$this * @psalm-return (TValue is array ? \Symfony\Config\Framework\WebhookConfig : static) */ public function webhook(array $value = []): \Symfony\Config\Framework\WebhookConfig|static { if (!\is_array($value)) { $this->_usedProperties['webhook'] = true; $this->webhook = $value; return $this; } if (!$this->webhook instanceof \Symfony\Config\Framework\WebhookConfig) { $this->_usedProperties['webhook'] = true; $this->webhook = new \Symfony\Config\Framework\WebhookConfig($value); } elseif (0 < \func_num_args()) { throw new InvalidConfigurationException('The node created by "webhook()" has already been initialized. You cannot pass values the second time you call webhook().'); } return $this->webhook; } /** * @template TValue * @param TValue $value * RemoteEvent configuration * @default {"enabled":false} * @return \Symfony\Config\Framework\RemoteeventConfig|$this * @psalm-return (TValue is array ? \Symfony\Config\Framework\RemoteeventConfig : static) */ public function remoteevent(array $value = []): \Symfony\Config\Framework\RemoteeventConfig|static { if (!\is_array($value)) { $this->_usedProperties['remoteevent'] = true; $this->remoteevent = $value; return $this; } if (!$this->remoteevent instanceof \Symfony\Config\Framework\RemoteeventConfig) { $this->_usedProperties['remoteevent'] = true; $this->remoteevent = new \Symfony\Config\Framework\RemoteeventConfig($value); } elseif (0 < \func_num_args()) { throw new InvalidConfigurationException('The node created by "remoteevent()" has already been initialized. You cannot pass values the second time you call remoteevent().'); } return $this->remoteevent; } public function getExtensionAlias(): string { return 'framework'; } public function __construct(array $value = []) { if (array_key_exists('secret', $value)) { $this->_usedProperties['secret'] = true; $this->secret = $value['secret']; unset($value['secret']); } if (array_key_exists('http_method_override', $value)) { $this->_usedProperties['httpMethodOverride'] = true; $this->httpMethodOverride = $value['http_method_override']; unset($value['http_method_override']); } if (array_key_exists('trust_x_sendfile_type_header', $value)) { $this->_usedProperties['trustXSendfileTypeHeader'] = true; $this->trustXSendfileTypeHeader = $value['trust_x_sendfile_type_header']; unset($value['trust_x_sendfile_type_header']); } if (array_key_exists('ide', $value)) { $this->_usedProperties['ide'] = true; $this->ide = $value['ide']; unset($value['ide']); } if (array_key_exists('test', $value)) { $this->_usedProperties['test'] = true; $this->test = $value['test']; unset($value['test']); } if (array_key_exists('default_locale', $value)) { $this->_usedProperties['defaultLocale'] = true; $this->defaultLocale = $value['default_locale']; unset($value['default_locale']); } if (array_key_exists('set_locale_from_accept_language', $value)) { $this->_usedProperties['setLocaleFromAcceptLanguage'] = true; $this->setLocaleFromAcceptLanguage = $value['set_locale_from_accept_language']; unset($value['set_locale_from_accept_language']); } if (array_key_exists('set_content_language_from_locale', $value)) { $this->_usedProperties['setContentLanguageFromLocale'] = true; $this->setContentLanguageFromLocale = $value['set_content_language_from_locale']; unset($value['set_content_language_from_locale']); } if (array_key_exists('enabled_locales', $value)) { $this->_usedProperties['enabledLocales'] = true; $this->enabledLocales = $value['enabled_locales']; unset($value['enabled_locales']); } if (array_key_exists('trusted_hosts', $value)) { $this->_usedProperties['trustedHosts'] = true; $this->trustedHosts = $value['trusted_hosts']; unset($value['trusted_hosts']); } if (array_key_exists('trusted_proxies', $value)) { $this->_usedProperties['trustedProxies'] = true; $this->trustedProxies = $value['trusted_proxies']; unset($value['trusted_proxies']); } if (array_key_exists('trusted_headers', $value)) { $this->_usedProperties['trustedHeaders'] = true; $this->trustedHeaders = $value['trusted_headers']; unset($value['trusted_headers']); } if (array_key_exists('error_controller', $value)) { $this->_usedProperties['errorController'] = true; $this->errorController = $value['error_controller']; unset($value['error_controller']); } if (array_key_exists('handle_all_throwables', $value)) { $this->_usedProperties['handleAllThrowables'] = true; $this->handleAllThrowables = $value['handle_all_throwables']; unset($value['handle_all_throwables']); } if (array_key_exists('csrf_protection', $value)) { $this->_usedProperties['csrfProtection'] = true; $this->csrfProtection = new \Symfony\Config\Framework\CsrfProtectionConfig($value['csrf_protection']); unset($value['csrf_protection']); } if (array_key_exists('form', $value)) { $this->_usedProperties['form'] = true; $this->form = new \Symfony\Config\Framework\FormConfig($value['form']); unset($value['form']); } if (array_key_exists('http_cache', $value)) { $this->_usedProperties['httpCache'] = true; $this->httpCache = \is_array($value['http_cache']) ? new \Symfony\Config\Framework\HttpCacheConfig($value['http_cache']) : $value['http_cache']; unset($value['http_cache']); } if (array_key_exists('esi', $value)) { $this->_usedProperties['esi'] = true; $this->esi = \is_array($value['esi']) ? new \Symfony\Config\Framework\EsiConfig($value['esi']) : $value['esi']; unset($value['esi']); } if (array_key_exists('ssi', $value)) { $this->_usedProperties['ssi'] = true; $this->ssi = \is_array($value['ssi']) ? new \Symfony\Config\Framework\SsiConfig($value['ssi']) : $value['ssi']; unset($value['ssi']); } if (array_key_exists('fragments', $value)) { $this->_usedProperties['fragments'] = true; $this->fragments = \is_array($value['fragments']) ? new \Symfony\Config\Framework\FragmentsConfig($value['fragments']) : $value['fragments']; unset($value['fragments']); } if (array_key_exists('profiler', $value)) { $this->_usedProperties['profiler'] = true; $this->profiler = \is_array($value['profiler']) ? new \Symfony\Config\Framework\ProfilerConfig($value['profiler']) : $value['profiler']; unset($value['profiler']); } if (array_key_exists('workflows', $value)) { $this->_usedProperties['workflows'] = true; $this->workflows = \is_array($value['workflows']) ? new \Symfony\Config\Framework\WorkflowsConfig($value['workflows']) : $value['workflows']; unset($value['workflows']); } if (array_key_exists('router', $value)) { $this->_usedProperties['router'] = true; $this->router = \is_array($value['router']) ? new \Symfony\Config\Framework\RouterConfig($value['router']) : $value['router']; unset($value['router']); } if (array_key_exists('session', $value)) { $this->_usedProperties['session'] = true; $this->session = \is_array($value['session']) ? new \Symfony\Config\Framework\SessionConfig($value['session']) : $value['session']; unset($value['session']); } if (array_key_exists('request', $value)) { $this->_usedProperties['request'] = true; $this->request = \is_array($value['request']) ? new \Symfony\Config\Framework\RequestConfig($value['request']) : $value['request']; unset($value['request']); } if (array_key_exists('assets', $value)) { $this->_usedProperties['assets'] = true; $this->assets = \is_array($value['assets']) ? new \Symfony\Config\Framework\AssetsConfig($value['assets']) : $value['assets']; unset($value['assets']); } if (array_key_exists('asset_mapper', $value)) { $this->_usedProperties['assetMapper'] = true; $this->assetMapper = \is_array($value['asset_mapper']) ? new \Symfony\Config\Framework\AssetMapperConfig($value['asset_mapper']) : $value['asset_mapper']; unset($value['asset_mapper']); } if (array_key_exists('translator', $value)) { $this->_usedProperties['translator'] = true; $this->translator = \is_array($value['translator']) ? new \Symfony\Config\Framework\TranslatorConfig($value['translator']) : $value['translator']; unset($value['translator']); } if (array_key_exists('validation', $value)) { $this->_usedProperties['validation'] = true; $this->validation = \is_array($value['validation']) ? new \Symfony\Config\Framework\ValidationConfig($value['validation']) : $value['validation']; unset($value['validation']); } if (array_key_exists('annotations', $value)) { $this->_usedProperties['annotations'] = true; $this->annotations = \is_array($value['annotations']) ? new \Symfony\Config\Framework\AnnotationsConfig($value['annotations']) : $value['annotations']; unset($value['annotations']); } if (array_key_exists('serializer', $value)) { $this->_usedProperties['serializer'] = true; $this->serializer = \is_array($value['serializer']) ? new \Symfony\Config\Framework\SerializerConfig($value['serializer']) : $value['serializer']; unset($value['serializer']); } if (array_key_exists('property_access', $value)) { $this->_usedProperties['propertyAccess'] = true; $this->propertyAccess = new \Symfony\Config\Framework\PropertyAccessConfig($value['property_access']); unset($value['property_access']); } if (array_key_exists('type_info', $value)) { $this->_usedProperties['typeInfo'] = true; $this->typeInfo = new \Symfony\Config\Framework\TypeInfoConfig($value['type_info']); unset($value['type_info']); } if (array_key_exists('property_info', $value)) { $this->_usedProperties['propertyInfo'] = true; $this->propertyInfo = new \Symfony\Config\Framework\PropertyInfoConfig($value['property_info']); unset($value['property_info']); } if (array_key_exists('cache', $value)) { $this->_usedProperties['cache'] = true; $this->cache = new \Symfony\Config\Framework\CacheConfig($value['cache']); unset($value['cache']); } if (array_key_exists('php_errors', $value)) { $this->_usedProperties['phpErrors'] = true; $this->phpErrors = new \Symfony\Config\Framework\PhpErrorsConfig($value['php_errors']); unset($value['php_errors']); } if (array_key_exists('exceptions', $value)) { $this->_usedProperties['exceptions'] = true; $this->exceptions = array_map(fn ($v) => new \Symfony\Config\Framework\ExceptionConfig($v), $value['exceptions']); unset($value['exceptions']); } if (array_key_exists('web_link', $value)) { $this->_usedProperties['webLink'] = true; $this->webLink = \is_array($value['web_link']) ? new \Symfony\Config\Framework\WebLinkConfig($value['web_link']) : $value['web_link']; unset($value['web_link']); } if (array_key_exists('lock', $value)) { $this->_usedProperties['lock'] = true; $this->lock = \is_array($value['lock']) ? new \Symfony\Config\Framework\LockConfig($value['lock']) : $value['lock']; unset($value['lock']); } if (array_key_exists('semaphore', $value)) { $this->_usedProperties['semaphore'] = true; $this->semaphore = \is_array($value['semaphore']) ? new \Symfony\Config\Framework\SemaphoreConfig($value['semaphore']) : $value['semaphore']; unset($value['semaphore']); } if (array_key_exists('messenger', $value)) { $this->_usedProperties['messenger'] = true; $this->messenger = \is_array($value['messenger']) ? new \Symfony\Config\Framework\MessengerConfig($value['messenger']) : $value['messenger']; unset($value['messenger']); } if (array_key_exists('scheduler', $value)) { $this->_usedProperties['scheduler'] = true; $this->scheduler = \is_array($value['scheduler']) ? new \Symfony\Config\Framework\SchedulerConfig($value['scheduler']) : $value['scheduler']; unset($value['scheduler']); } if (array_key_exists('disallow_search_engine_index', $value)) { $this->_usedProperties['disallowSearchEngineIndex'] = true; $this->disallowSearchEngineIndex = $value['disallow_search_engine_index']; unset($value['disallow_search_engine_index']); } if (array_key_exists('http_client', $value)) { $this->_usedProperties['httpClient'] = true; $this->httpClient = \is_array($value['http_client']) ? new \Symfony\Config\Framework\HttpClientConfig($value['http_client']) : $value['http_client']; unset($value['http_client']); } if (array_key_exists('mailer', $value)) { $this->_usedProperties['mailer'] = true; $this->mailer = new \Symfony\Config\Framework\MailerConfig($value['mailer']); unset($value['mailer']); } if (array_key_exists('secrets', $value)) { $this->_usedProperties['secrets'] = true; $this->secrets = new \Symfony\Config\Framework\SecretsConfig($value['secrets']); unset($value['secrets']); } if (array_key_exists('notifier', $value)) { $this->_usedProperties['notifier'] = true; $this->notifier = \is_array($value['notifier']) ? new \Symfony\Config\Framework\NotifierConfig($value['notifier']) : $value['notifier']; unset($value['notifier']); } if (array_key_exists('rate_limiter', $value)) { $this->_usedProperties['rateLimiter'] = true; $this->rateLimiter = \is_array($value['rate_limiter']) ? new \Symfony\Config\Framework\RateLimiterConfig($value['rate_limiter']) : $value['rate_limiter']; unset($value['rate_limiter']); } if (array_key_exists('uid', $value)) { $this->_usedProperties['uid'] = true; $this->uid = \is_array($value['uid']) ? new \Symfony\Config\Framework\UidConfig($value['uid']) : $value['uid']; unset($value['uid']); } if (array_key_exists('html_sanitizer', $value)) { $this->_usedProperties['htmlSanitizer'] = true; $this->htmlSanitizer = \is_array($value['html_sanitizer']) ? new \Symfony\Config\Framework\HtmlSanitizerConfig($value['html_sanitizer']) : $value['html_sanitizer']; unset($value['html_sanitizer']); } if (array_key_exists('webhook', $value)) { $this->_usedProperties['webhook'] = true; $this->webhook = \is_array($value['webhook']) ? new \Symfony\Config\Framework\WebhookConfig($value['webhook']) : $value['webhook']; unset($value['webhook']); } if (array_key_exists('remote-event', $value)) { $this->_usedProperties['remoteevent'] = true; $this->remoteevent = \is_array($value['remote-event']) ? new \Symfony\Config\Framework\RemoteeventConfig($value['remote-event']) : $value['remote-event']; unset($value['remote-event']); } 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 (isset($this->_usedProperties['secret'])) { $output['secret'] = $this->secret; } if (isset($this->_usedProperties['httpMethodOverride'])) { $output['http_method_override'] = $this->httpMethodOverride; } if (isset($this->_usedProperties['trustXSendfileTypeHeader'])) { $output['trust_x_sendfile_type_header'] = $this->trustXSendfileTypeHeader; } if (isset($this->_usedProperties['ide'])) { $output['ide'] = $this->ide; } if (isset($this->_usedProperties['test'])) { $output['test'] = $this->test; } if (isset($this->_usedProperties['defaultLocale'])) { $output['default_locale'] = $this->defaultLocale; } if (isset($this->_usedProperties['setLocaleFromAcceptLanguage'])) { $output['set_locale_from_accept_language'] = $this->setLocaleFromAcceptLanguage; } if (isset($this->_usedProperties['setContentLanguageFromLocale'])) { $output['set_content_language_from_locale'] = $this->setContentLanguageFromLocale; } if (isset($this->_usedProperties['enabledLocales'])) { $output['enabled_locales'] = $this->enabledLocales; } if (isset($this->_usedProperties['trustedHosts'])) { $output['trusted_hosts'] = $this->trustedHosts; } if (isset($this->_usedProperties['trustedProxies'])) { $output['trusted_proxies'] = $this->trustedProxies; } if (isset($this->_usedProperties['trustedHeaders'])) { $output['trusted_headers'] = $this->trustedHeaders; } if (isset($this->_usedProperties['errorController'])) { $output['error_controller'] = $this->errorController; } if (isset($this->_usedProperties['handleAllThrowables'])) { $output['handle_all_throwables'] = $this->handleAllThrowables; } if (isset($this->_usedProperties['csrfProtection'])) { $output['csrf_protection'] = $this->csrfProtection->toArray(); } if (isset($this->_usedProperties['form'])) { $output['form'] = $this->form->toArray(); } if (isset($this->_usedProperties['httpCache'])) { $output['http_cache'] = $this->httpCache instanceof \Symfony\Config\Framework\HttpCacheConfig ? $this->httpCache->toArray() : $this->httpCache; } if (isset($this->_usedProperties['esi'])) { $output['esi'] = $this->esi instanceof \Symfony\Config\Framework\EsiConfig ? $this->esi->toArray() : $this->esi; } if (isset($this->_usedProperties['ssi'])) { $output['ssi'] = $this->ssi instanceof \Symfony\Config\Framework\SsiConfig ? $this->ssi->toArray() : $this->ssi; } if (isset($this->_usedProperties['fragments'])) { $output['fragments'] = $this->fragments instanceof \Symfony\Config\Framework\FragmentsConfig ? $this->fragments->toArray() : $this->fragments; } if (isset($this->_usedProperties['profiler'])) { $output['profiler'] = $this->profiler instanceof \Symfony\Config\Framework\ProfilerConfig ? $this->profiler->toArray() : $this->profiler; } if (isset($this->_usedProperties['workflows'])) { $output['workflows'] = $this->workflows instanceof \Symfony\Config\Framework\WorkflowsConfig ? $this->workflows->toArray() : $this->workflows; } if (isset($this->_usedProperties['router'])) { $output['router'] = $this->router instanceof \Symfony\Config\Framework\RouterConfig ? $this->router->toArray() : $this->router; } if (isset($this->_usedProperties['session'])) { $output['session'] = $this->session instanceof \Symfony\Config\Framework\SessionConfig ? $this->session->toArray() : $this->session; } if (isset($this->_usedProperties['request'])) { $output['request'] = $this->request instanceof \Symfony\Config\Framework\RequestConfig ? $this->request->toArray() : $this->request; } if (isset($this->_usedProperties['assets'])) { $output['assets'] = $this->assets instanceof \Symfony\Config\Framework\AssetsConfig ? $this->assets->toArray() : $this->assets; } if (isset($this->_usedProperties['assetMapper'])) { $output['asset_mapper'] = $this->assetMapper instanceof \Symfony\Config\Framework\AssetMapperConfig ? $this->assetMapper->toArray() : $this->assetMapper; } if (isset($this->_usedProperties['translator'])) { $output['translator'] = $this->translator instanceof \Symfony\Config\Framework\TranslatorConfig ? $this->translator->toArray() : $this->translator; } if (isset($this->_usedProperties['validation'])) { $output['validation'] = $this->validation instanceof \Symfony\Config\Framework\ValidationConfig ? $this->validation->toArray() : $this->validation; } if (isset($this->_usedProperties['annotations'])) { $output['annotations'] = $this->annotations instanceof \Symfony\Config\Framework\AnnotationsConfig ? $this->annotations->toArray() : $this->annotations; } if (isset($this->_usedProperties['serializer'])) { $output['serializer'] = $this->serializer instanceof \Symfony\Config\Framework\SerializerConfig ? $this->serializer->toArray() : $this->serializer; } if (isset($this->_usedProperties['propertyAccess'])) { $output['property_access'] = $this->propertyAccess->toArray(); } if (isset($this->_usedProperties['typeInfo'])) { $output['type_info'] = $this->typeInfo->toArray(); } if (isset($this->_usedProperties['propertyInfo'])) { $output['property_info'] = $this->propertyInfo->toArray(); } if (isset($this->_usedProperties['cache'])) { $output['cache'] = $this->cache->toArray(); } if (isset($this->_usedProperties['phpErrors'])) { $output['php_errors'] = $this->phpErrors->toArray(); } if (isset($this->_usedProperties['exceptions'])) { $output['exceptions'] = array_map(fn ($v) => $v->toArray(), $this->exceptions); } if (isset($this->_usedProperties['webLink'])) { $output['web_link'] = $this->webLink instanceof \Symfony\Config\Framework\WebLinkConfig ? $this->webLink->toArray() : $this->webLink; } if (isset($this->_usedProperties['lock'])) { $output['lock'] = $this->lock instanceof \Symfony\Config\Framework\LockConfig ? $this->lock->toArray() : $this->lock; } if (isset($this->_usedProperties['semaphore'])) { $output['semaphore'] = $this->semaphore instanceof \Symfony\Config\Framework\SemaphoreConfig ? $this->semaphore->toArray() : $this->semaphore; } if (isset($this->_usedProperties['messenger'])) { $output['messenger'] = $this->messenger instanceof \Symfony\Config\Framework\MessengerConfig ? $this->messenger->toArray() : $this->messenger; } if (isset($this->_usedProperties['scheduler'])) { $output['scheduler'] = $this->scheduler instanceof \Symfony\Config\Framework\SchedulerConfig ? $this->scheduler->toArray() : $this->scheduler; } if (isset($this->_usedProperties['disallowSearchEngineIndex'])) { $output['disallow_search_engine_index'] = $this->disallowSearchEngineIndex; } if (isset($this->_usedProperties['httpClient'])) { $output['http_client'] = $this->httpClient instanceof \Symfony\Config\Framework\HttpClientConfig ? $this->httpClient->toArray() : $this->httpClient; } if (isset($this->_usedProperties['mailer'])) { $output['mailer'] = $this->mailer->toArray(); } if (isset($this->_usedProperties['secrets'])) { $output['secrets'] = $this->secrets->toArray(); } if (isset($this->_usedProperties['notifier'])) { $output['notifier'] = $this->notifier instanceof \Symfony\Config\Framework\NotifierConfig ? $this->notifier->toArray() : $this->notifier; } if (isset($this->_usedProperties['rateLimiter'])) { $output['rate_limiter'] = $this->rateLimiter instanceof \Symfony\Config\Framework\RateLimiterConfig ? $this->rateLimiter->toArray() : $this->rateLimiter; } if (isset($this->_usedProperties['uid'])) { $output['uid'] = $this->uid instanceof \Symfony\Config\Framework\UidConfig ? $this->uid->toArray() : $this->uid; } if (isset($this->_usedProperties['htmlSanitizer'])) { $output['html_sanitizer'] = $this->htmlSanitizer instanceof \Symfony\Config\Framework\HtmlSanitizerConfig ? $this->htmlSanitizer->toArray() : $this->htmlSanitizer; } if (isset($this->_usedProperties['webhook'])) { $output['webhook'] = $this->webhook instanceof \Symfony\Config\Framework\WebhookConfig ? $this->webhook->toArray() : $this->webhook; } if (isset($this->_usedProperties['remoteevent'])) { $output['remote-event'] = $this->remoteevent instanceof \Symfony\Config\Framework\RemoteeventConfig ? $this->remoteevent->toArray() : $this->remoteevent; } return $output; } }