The start of something beautiful

This commit is contained in:
2024-09-11 22:48:07 -06:00
parent 45acea47f3
commit f5997ee5ec
5614 changed files with 630696 additions and 0 deletions
@@ -0,0 +1,52 @@
<?php
namespace Symfony\Config\Framework\Serializer;
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 MappingConfig
{
private $paths;
private $_usedProperties = [];
/**
* @param ParamConfigurator|list<ParamConfigurator|mixed> $value
*
* @return $this
*/
public function paths(ParamConfigurator|array $value): static
{
$this->_usedProperties['paths'] = true;
$this->paths = $value;
return $this;
}
public function __construct(array $value = [])
{
if (array_key_exists('paths', $value)) {
$this->_usedProperties['paths'] = true;
$this->paths = $value['paths'];
unset($value['paths']);
}
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['paths'])) {
$output['paths'] = $this->paths;
}
return $output;
}
}