Sindbad~EG File Manager
<?php
namespace Symfony\Config\Framework\Translator;
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 PseudoLocalizationConfig
{
private $enabled;
private $accents;
private $expansionFactor;
private $brackets;
private $parseHtml;
private $localizableHtmlAttributes;
/**
* @default false
* @param ParamConfigurator|bool $value
* @return $this
*/
public function enabled($value): self
{
$this->enabled = $value;
return $this;
}
/**
* @default true
* @param ParamConfigurator|bool $value
* @return $this
*/
public function accents($value): self
{
$this->accents = $value;
return $this;
}
/**
* @default 1.0
* @param ParamConfigurator|float $value
* @return $this
*/
public function expansionFactor($value): self
{
$this->expansionFactor = $value;
return $this;
}
/**
* @default true
* @param ParamConfigurator|bool $value
* @return $this
*/
public function brackets($value): self
{
$this->brackets = $value;
return $this;
}
/**
* @default false
* @param ParamConfigurator|bool $value
* @return $this
*/
public function parseHtml($value): self
{
$this->parseHtml = $value;
return $this;
}
/**
* @param ParamConfigurator|list<mixed|ParamConfigurator> $value
* @return $this
*/
public function localizableHtmlAttributes($value): self
{
$this->localizableHtmlAttributes = $value;
return $this;
}
public function __construct(array $value = [])
{
if (isset($value['enabled'])) {
$this->enabled = $value['enabled'];
unset($value['enabled']);
}
if (isset($value['accents'])) {
$this->accents = $value['accents'];
unset($value['accents']);
}
if (isset($value['expansion_factor'])) {
$this->expansionFactor = $value['expansion_factor'];
unset($value['expansion_factor']);
}
if (isset($value['brackets'])) {
$this->brackets = $value['brackets'];
unset($value['brackets']);
}
if (isset($value['parse_html'])) {
$this->parseHtml = $value['parse_html'];
unset($value['parse_html']);
}
if (isset($value['localizable_html_attributes'])) {
$this->localizableHtmlAttributes = $value['localizable_html_attributes'];
unset($value['localizable_html_attributes']);
}
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->enabled) {
$output['enabled'] = $this->enabled;
}
if (null !== $this->accents) {
$output['accents'] = $this->accents;
}
if (null !== $this->expansionFactor) {
$output['expansion_factor'] = $this->expansionFactor;
}
if (null !== $this->brackets) {
$output['brackets'] = $this->brackets;
}
if (null !== $this->parseHtml) {
$output['parse_html'] = $this->parseHtml;
}
if (null !== $this->localizableHtmlAttributes) {
$output['localizable_html_attributes'] = $this->localizableHtmlAttributes;
}
return $output;
}
}
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists