_usedProperties['enabled'] = true; $this->enabled = $value; return $this; } /** * @default false * @param ParamConfigurator|bool $value * @return $this */ public function magicCall($value): static { $this->_usedProperties['magicCall'] = true; $this->magicCall = $value; return $this; } /** * @default true * @param ParamConfigurator|bool $value * @return $this */ public function magicGet($value): static { $this->_usedProperties['magicGet'] = true; $this->magicGet = $value; return $this; } /** * @default true * @param ParamConfigurator|bool $value * @return $this */ public function magicSet($value): static { $this->_usedProperties['magicSet'] = true; $this->magicSet = $value; return $this; } /** * @default false * @param ParamConfigurator|bool $value * @return $this */ public function throwExceptionOnInvalidIndex($value): static { $this->_usedProperties['throwExceptionOnInvalidIndex'] = true; $this->throwExceptionOnInvalidIndex = $value; return $this; } /** * @default true * @param ParamConfigurator|bool $value * @return $this */ public function throwExceptionOnInvalidPropertyPath($value): static { $this->_usedProperties['throwExceptionOnInvalidPropertyPath'] = true; $this->throwExceptionOnInvalidPropertyPath = $value; return $this; } public function __construct(array $value = []) { if (array_key_exists('enabled', $value)) { $this->_usedProperties['enabled'] = true; $this->enabled = $value['enabled']; unset($value['enabled']); } if (array_key_exists('magic_call', $value)) { $this->_usedProperties['magicCall'] = true; $this->magicCall = $value['magic_call']; unset($value['magic_call']); } if (array_key_exists('magic_get', $value)) { $this->_usedProperties['magicGet'] = true; $this->magicGet = $value['magic_get']; unset($value['magic_get']); } if (array_key_exists('magic_set', $value)) { $this->_usedProperties['magicSet'] = true; $this->magicSet = $value['magic_set']; unset($value['magic_set']); } if (array_key_exists('throw_exception_on_invalid_index', $value)) { $this->_usedProperties['throwExceptionOnInvalidIndex'] = true; $this->throwExceptionOnInvalidIndex = $value['throw_exception_on_invalid_index']; unset($value['throw_exception_on_invalid_index']); } if (array_key_exists('throw_exception_on_invalid_property_path', $value)) { $this->_usedProperties['throwExceptionOnInvalidPropertyPath'] = true; $this->throwExceptionOnInvalidPropertyPath = $value['throw_exception_on_invalid_property_path']; unset($value['throw_exception_on_invalid_property_path']); } 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['enabled'])) { $output['enabled'] = $this->enabled; } if (isset($this->_usedProperties['magicCall'])) { $output['magic_call'] = $this->magicCall; } if (isset($this->_usedProperties['magicGet'])) { $output['magic_get'] = $this->magicGet; } if (isset($this->_usedProperties['magicSet'])) { $output['magic_set'] = $this->magicSet; } if (isset($this->_usedProperties['throwExceptionOnInvalidIndex'])) { $output['throw_exception_on_invalid_index'] = $this->throwExceptionOnInvalidIndex; } if (isset($this->_usedProperties['throwExceptionOnInvalidPropertyPath'])) { $output['throw_exception_on_invalid_property_path'] = $this->throwExceptionOnInvalidPropertyPath; } return $output; } }