_usedProperties['enableCsrf'] = true; $this->enableCsrf = $value; return $this; } /** * @default 'logout' * @param ParamConfigurator|mixed $value * @return $this */ public function csrfTokenId($value): static { $this->_usedProperties['csrfTokenId'] = true; $this->csrfTokenId = $value; return $this; } /** * @default '_csrf_token' * @param ParamConfigurator|mixed $value * @return $this */ public function csrfParameter($value): static { $this->_usedProperties['csrfParameter'] = true; $this->csrfParameter = $value; return $this; } /** * @default null * @param ParamConfigurator|mixed $value * @return $this */ public function csrfTokenManager($value): static { $this->_usedProperties['csrfTokenManager'] = true; $this->csrfTokenManager = $value; return $this; } /** * @default '/logout' * @param ParamConfigurator|mixed $value * @return $this */ public function path($value): static { $this->_usedProperties['path'] = true; $this->path = $value; return $this; } /** * @default '/' * @param ParamConfigurator|mixed $value * @return $this */ public function target($value): static { $this->_usedProperties['target'] = true; $this->target = $value; return $this; } /** * @default true * @param ParamConfigurator|bool $value * @return $this */ public function invalidateSession($value): static { $this->_usedProperties['invalidateSession'] = true; $this->invalidateSession = $value; return $this; } /** * @param ParamConfigurator|list|string $value * * @return $this */ public function clearSiteData(ParamConfigurator|string|array $value): static { $this->_usedProperties['clearSiteData'] = true; $this->clearSiteData = $value; return $this; } /** * @template TValue * @param TValue $value * @return \Symfony\Config\Security\FirewallConfig\Logout\DeleteCookieConfig|$this * @psalm-return (TValue is array ? \Symfony\Config\Security\FirewallConfig\Logout\DeleteCookieConfig : static) */ public function deleteCookie(string $name, array $value = []): \Symfony\Config\Security\FirewallConfig\Logout\DeleteCookieConfig|static { if (!\is_array($value)) { $this->_usedProperties['deleteCookies'] = true; $this->deleteCookies[$name] = $value; return $this; } if (!isset($this->deleteCookies[$name]) || !$this->deleteCookies[$name] instanceof \Symfony\Config\Security\FirewallConfig\Logout\DeleteCookieConfig) { $this->_usedProperties['deleteCookies'] = true; $this->deleteCookies[$name] = new \Symfony\Config\Security\FirewallConfig\Logout\DeleteCookieConfig($value); } elseif (1 < \func_num_args()) { throw new InvalidConfigurationException('The node created by "deleteCookie()" has already been initialized. You cannot pass values the second time you call deleteCookie().'); } return $this->deleteCookies[$name]; } public function __construct(array $value = []) { if (array_key_exists('enable_csrf', $value)) { $this->_usedProperties['enableCsrf'] = true; $this->enableCsrf = $value['enable_csrf']; unset($value['enable_csrf']); } if (array_key_exists('csrf_token_id', $value)) { $this->_usedProperties['csrfTokenId'] = true; $this->csrfTokenId = $value['csrf_token_id']; unset($value['csrf_token_id']); } if (array_key_exists('csrf_parameter', $value)) { $this->_usedProperties['csrfParameter'] = true; $this->csrfParameter = $value['csrf_parameter']; unset($value['csrf_parameter']); } if (array_key_exists('csrf_token_manager', $value)) { $this->_usedProperties['csrfTokenManager'] = true; $this->csrfTokenManager = $value['csrf_token_manager']; unset($value['csrf_token_manager']); } if (array_key_exists('path', $value)) { $this->_usedProperties['path'] = true; $this->path = $value['path']; unset($value['path']); } if (array_key_exists('target', $value)) { $this->_usedProperties['target'] = true; $this->target = $value['target']; unset($value['target']); } if (array_key_exists('invalidate_session', $value)) { $this->_usedProperties['invalidateSession'] = true; $this->invalidateSession = $value['invalidate_session']; unset($value['invalidate_session']); } if (array_key_exists('clear_site_data', $value)) { $this->_usedProperties['clearSiteData'] = true; $this->clearSiteData = $value['clear_site_data']; unset($value['clear_site_data']); } if (array_key_exists('delete_cookies', $value)) { $this->_usedProperties['deleteCookies'] = true; $this->deleteCookies = array_map(fn ($v) => \is_array($v) ? new \Symfony\Config\Security\FirewallConfig\Logout\DeleteCookieConfig($v) : $v, $value['delete_cookies']); unset($value['delete_cookies']); } 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['enableCsrf'])) { $output['enable_csrf'] = $this->enableCsrf; } if (isset($this->_usedProperties['csrfTokenId'])) { $output['csrf_token_id'] = $this->csrfTokenId; } if (isset($this->_usedProperties['csrfParameter'])) { $output['csrf_parameter'] = $this->csrfParameter; } if (isset($this->_usedProperties['csrfTokenManager'])) { $output['csrf_token_manager'] = $this->csrfTokenManager; } if (isset($this->_usedProperties['path'])) { $output['path'] = $this->path; } if (isset($this->_usedProperties['target'])) { $output['target'] = $this->target; } if (isset($this->_usedProperties['invalidateSession'])) { $output['invalidate_session'] = $this->invalidateSession; } if (isset($this->_usedProperties['clearSiteData'])) { $output['clear_site_data'] = $this->clearSiteData; } if (isset($this->_usedProperties['deleteCookies'])) { $output['delete_cookies'] = array_map(fn ($v) => $v instanceof \Symfony\Config\Security\FirewallConfig\Logout\DeleteCookieConfig ? $v->toArray() : $v, $this->deleteCookies); } return $output; } }