_usedProperties['enabled'] = true; $this->enabled = $value; return $this; } /** * @default '_token' * @param ParamConfigurator|mixed $value * @return $this */ public function fieldName($value): static { $this->_usedProperties['fieldName'] = true; $this->fieldName = $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('field_name', $value)) { $this->_usedProperties['fieldName'] = true; $this->fieldName = $value['field_name']; unset($value['field_name']); } 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['fieldName'])) { $output['field_name'] = $this->fieldName; } return $output; } }