122 lines
3.1 KiB
PHP
122 lines
3.1 KiB
PHP
<?php
|
|
|
|
namespace Symfony\Config\Framework;
|
|
|
|
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 AnnotationsConfig
|
|
{
|
|
private $enabled;
|
|
private $cache;
|
|
private $fileCacheDir;
|
|
private $debug;
|
|
private $_usedProperties = [];
|
|
|
|
/**
|
|
* @default true
|
|
* @param ParamConfigurator|bool $value
|
|
* @return $this
|
|
*/
|
|
public function enabled($value): static
|
|
{
|
|
$this->_usedProperties['enabled'] = true;
|
|
$this->enabled = $value;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @default 'php_array'
|
|
* @param ParamConfigurator|'none'|'php_array'|'file' $value
|
|
* @return $this
|
|
*/
|
|
public function cache($value): static
|
|
{
|
|
$this->_usedProperties['cache'] = true;
|
|
$this->cache = $value;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @default '%kernel.cache_dir%/annotations'
|
|
* @param ParamConfigurator|mixed $value
|
|
* @return $this
|
|
*/
|
|
public function fileCacheDir($value): static
|
|
{
|
|
$this->_usedProperties['fileCacheDir'] = true;
|
|
$this->fileCacheDir = $value;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @default true
|
|
* @param ParamConfigurator|bool $value
|
|
* @return $this
|
|
*/
|
|
public function debug($value): static
|
|
{
|
|
$this->_usedProperties['debug'] = true;
|
|
$this->debug = $value;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function __construct(array $value = [])
|
|
{
|
|
if (array_key_exists('enabled', $value)) {
|
|
$this->_usedProperties['enabled'] = true;
|
|
$this->enabled = $value['enabled'];
|
|
unset($value['enabled']);
|
|
}
|
|
|
|
if (array_key_exists('cache', $value)) {
|
|
$this->_usedProperties['cache'] = true;
|
|
$this->cache = $value['cache'];
|
|
unset($value['cache']);
|
|
}
|
|
|
|
if (array_key_exists('file_cache_dir', $value)) {
|
|
$this->_usedProperties['fileCacheDir'] = true;
|
|
$this->fileCacheDir = $value['file_cache_dir'];
|
|
unset($value['file_cache_dir']);
|
|
}
|
|
|
|
if (array_key_exists('debug', $value)) {
|
|
$this->_usedProperties['debug'] = true;
|
|
$this->debug = $value['debug'];
|
|
unset($value['debug']);
|
|
}
|
|
|
|
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['enabled'])) {
|
|
$output['enabled'] = $this->enabled;
|
|
}
|
|
if (isset($this->_usedProperties['cache'])) {
|
|
$output['cache'] = $this->cache;
|
|
}
|
|
if (isset($this->_usedProperties['fileCacheDir'])) {
|
|
$output['file_cache_dir'] = $this->fileCacheDir;
|
|
}
|
|
if (isset($this->_usedProperties['debug'])) {
|
|
$output['debug'] = $this->debug;
|
|
}
|
|
|
|
return $output;
|
|
}
|
|
|
|
}
|