We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent abe4f70 commit 9517edbCopy full SHA for 9517edb
system/Debug/Exceptions.php
@@ -84,17 +84,6 @@ public function __construct(ExceptionsConfig $config)
84
$this->viewPath = rtrim($config->errorViewPath, '\\/ ') . DIRECTORY_SEPARATOR;
85
86
$this->config = $config;
87
-
88
- // workaround for upgraded users
89
- // This causes "Deprecated: Creation of dynamic property" in PHP 8.2.
90
- // @TODO remove this after dropping PHP 8.1 support.
91
- if (! isset($this->config->sensitiveDataInTrace)) {
92
- $this->config->sensitiveDataInTrace = [];
93
- }
94
- if (! isset($this->config->logDeprecations, $this->config->deprecationLogLevel)) {
95
- $this->config->logDeprecations = false;
96
- $this->config->deprecationLogLevel = LogLevel::WARNING;
97
98
}
99
100
/**
0 commit comments