_usedProperties['service'] = true; $this->service = $value; return $this; } /** * @default 'RS256' * @param ParamConfigurator|mixed $value * @return $this */ public function signatureAlgorithm($value): static { $this->_usedProperties['signatureAlgorithm'] = true; $this->signatureAlgorithm = $value; return $this; } public function __construct(array $value = []) { if (array_key_exists('service', $value)) { $this->_usedProperties['service'] = true; $this->service = $value['service']; unset($value['service']); } if (array_key_exists('signature_algorithm', $value)) { $this->_usedProperties['signatureAlgorithm'] = true; $this->signatureAlgorithm = $value['signature_algorithm']; unset($value['signature_algorithm']); } 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['service'])) { $output['service'] = $this->service; } if (isset($this->_usedProperties['signatureAlgorithm'])) { $output['signature_algorithm'] = $this->signatureAlgorithm; } return $output; } }