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