_usedProperties['enabled'] = true; $this->enabled = $value; return $this; } /** * @default {"enabled":null,"token_id":null,"field_name":"_token","field_attr":{"data-controller":"csrf-protection"}} */ public function csrfProtection(array $value = []): \Symfony\Config\Framework\Form\CsrfProtectionConfig { if (null === $this->csrfProtection) { $this->_usedProperties['csrfProtection'] = true; $this->csrfProtection = new \Symfony\Config\Framework\Form\CsrfProtectionConfig($value); } elseif (0 < \func_num_args()) { throw new InvalidConfigurationException('The node created by "csrfProtection()" has already been initialized. You cannot pass values the second time you call csrfProtection().'); } return $this->csrfProtection; } 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('csrf_protection', $value)) { $this->_usedProperties['csrfProtection'] = true; $this->csrfProtection = new \Symfony\Config\Framework\Form\CsrfProtectionConfig($value['csrf_protection']); unset($value['csrf_protection']); } 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['csrfProtection'])) { $output['csrf_protection'] = $this->csrfProtection->toArray(); } return $output; } }