Julius Herrmann 40ae8de197 intitial init
2021-06-13 23:00:07 +02:00

99 lines
2.0 KiB
PHP

<?php
namespace Symfony\Config\Twig;
use Symfony\Component\Config\Loader\ParamConfigurator;
use Symfony\Component\Config\Definition\Exception\InvalidConfigurationException;
/**
* This class is automatically generated to help creating config.
*
* @experimental in 5.3
*/
class GlobalConfig
{
private $id;
private $type;
private $value;
/**
* @default null
* @param ParamConfigurator|mixed $value
* @return $this
*/
public function id($value): self
{
$this->id = $value;
return $this;
}
/**
* @default null
* @param ParamConfigurator|mixed $value
* @return $this
*/
public function type($value): self
{
$this->type = $value;
return $this;
}
/**
* @default null
* @param ParamConfigurator|mixed $value
* @return $this
*/
public function value($value): self
{
$this->value = $value;
return $this;
}
public function __construct(array $value = [])
{
if (isset($value['id'])) {
$this->id = $value['id'];
unset($value['id']);
}
if (isset($value['type'])) {
$this->type = $value['type'];
unset($value['type']);
}
if (isset($value['value'])) {
$this->value = $value['value'];
unset($value['value']);
}
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->id) {
$output['id'] = $this->id;
}
if (null !== $this->type) {
$output['type'] = $this->type;
}
if (null !== $this->value) {
$output['value'] = $this->value;
}
return $output;
}
}