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