enabled = $value; return $this; } /** * @param ParamConfigurator|array $value * @return $this */ public function format(string $name, $value): self { $this->formats[$name] = $value; return $this; } public function __construct(array $value = []) { if (isset($value['enabled'])) { $this->enabled = $value['enabled']; unset($value['enabled']); } if (isset($value['formats'])) { $this->formats = $value['formats']; unset($value['formats']); } 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->formats) { $output['formats'] = $this->formats; } return $output; } }