Linux SRV-16 6.18.44-paas #1 SMP PREEMPT_DYNAMIC Thu Aug 13 10:08:12 UTC 2026 x86_64
/
proc
/
212
/
root
/
proc
/
212
/
task
/
212
/
root
/
proc
/
70528
/
cwd
/
var
/
cache
/
dev
/
Symfony
/
Config
/
//proc/212/root/proc/212/task/212/root/proc/70528/cwd/var/cache/dev/Symfony/Config/MakerConfig.php
<?php namespace Symfony\Config; use Symfony\Component\Config\Loader\ParamConfigurator; use Symfony\Component\Config\Definition\Exception\InvalidConfigurationException; /** * This class is automatically generated to help in creating a config. */ class MakerConfig implements \Symfony\Component\Config\Builder\ConfigBuilderInterface { private $rootNamespace; private $_usedProperties = []; /** * @default 'App' * @param ParamConfigurator|mixed $value * @return $this */ public function rootNamespace($value): self { $this->_usedProperties['rootNamespace'] = true; $this->rootNamespace = $value; return $this; } public function getExtensionAlias(): string { return 'maker'; } public function __construct(array $value = []) { if (array_key_exists('root_namespace', $value)) { $this->_usedProperties['rootNamespace'] = true; $this->rootNamespace = $value['root_namespace']; unset($value['root_namespace']); } 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['rootNamespace'])) { $output['root_namespace'] = $this->rootNamespace; } return $output; } }