76 lines
1.8 KiB
PHP
76 lines
1.8 KiB
PHP
<?php
|
|
|
|
namespace Symfony\Config\Security\FirewallConfig;
|
|
|
|
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 RemoteUserConfig
|
|
{
|
|
private $provider;
|
|
private $user;
|
|
private $_usedProperties = [];
|
|
|
|
/**
|
|
* @default null
|
|
* @param ParamConfigurator|mixed $value
|
|
* @return $this
|
|
*/
|
|
public function provider($value): static
|
|
{
|
|
$this->_usedProperties['provider'] = true;
|
|
$this->provider = $value;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @default 'REMOTE_USER'
|
|
* @param ParamConfigurator|mixed $value
|
|
* @return $this
|
|
*/
|
|
public function user($value): static
|
|
{
|
|
$this->_usedProperties['user'] = true;
|
|
$this->user = $value;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function __construct(array $value = [])
|
|
{
|
|
if (array_key_exists('provider', $value)) {
|
|
$this->_usedProperties['provider'] = true;
|
|
$this->provider = $value['provider'];
|
|
unset($value['provider']);
|
|
}
|
|
|
|
if (array_key_exists('user', $value)) {
|
|
$this->_usedProperties['user'] = true;
|
|
$this->user = $value['user'];
|
|
unset($value['user']);
|
|
}
|
|
|
|
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['provider'])) {
|
|
$output['provider'] = $this->provider;
|
|
}
|
|
if (isset($this->_usedProperties['user'])) {
|
|
$output['user'] = $this->user;
|
|
}
|
|
|
|
return $output;
|
|
}
|
|
|
|
}
|