enabled = $value; return $this; } /** * @default true * @param ParamConfigurator|bool $value * @return $this */ public function collect($value): self { $this->collect = $value; return $this; } /** * @default false * @param ParamConfigurator|bool $value * @return $this */ public function onlyExceptions($value): self { $this->onlyExceptions = $value; return $this; } /** * @default false * @param ParamConfigurator|bool $value * @return $this */ public function onlyMainRequests($value): self { $this->onlyMainRequests = $value; return $this; } /** * @default false * @param ParamConfigurator|bool $value * @deprecated Option "only_master_requests" at "profiler" is deprecated, use "only_main_requests" instead. * @return $this */ public function onlyMasterRequests($value): self { $this->onlyMasterRequests = $value; return $this; } /** * @default 'file:%kernel.cache_dir%/profiler' * @param ParamConfigurator|mixed $value * @return $this */ public function dsn($value): self { $this->dsn = $value; return $this; } public function __construct(array $value = []) { if (isset($value['enabled'])) { $this->enabled = $value['enabled']; unset($value['enabled']); } if (isset($value['collect'])) { $this->collect = $value['collect']; unset($value['collect']); } if (isset($value['only_exceptions'])) { $this->onlyExceptions = $value['only_exceptions']; unset($value['only_exceptions']); } if (isset($value['only_main_requests'])) { $this->onlyMainRequests = $value['only_main_requests']; unset($value['only_main_requests']); } if (isset($value['only_master_requests'])) { $this->onlyMasterRequests = $value['only_master_requests']; unset($value['only_master_requests']); } if (isset($value['dsn'])) { $this->dsn = $value['dsn']; unset($value['dsn']); } 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->collect) { $output['collect'] = $this->collect; } if (null !== $this->onlyExceptions) { $output['only_exceptions'] = $this->onlyExceptions; } if (null !== $this->onlyMainRequests) { $output['only_main_requests'] = $this->onlyMainRequests; } if (null !== $this->onlyMasterRequests) { $output['only_master_requests'] = $this->onlyMasterRequests; } if (null !== $this->dsn) { $output['dsn'] = $this->dsn; } return $output; } }