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 b0d85ee commit ab6fdd8Copy full SHA for ab6fdd8
DeprecationErrorHandler/Deprecation.php
@@ -61,7 +61,7 @@ public function __construct($message, array $trace, $file)
61
$this->triggeringFile = $file;
62
if (isset($line['object']) || isset($line['class'])) {
63
set_error_handler(function () {});
64
- $parsedMsg = unserialize($this->message);
+ $parsedMsg = @unserialize($this->message);
65
restore_error_handler();
66
if ($parsedMsg && isset($parsedMsg['deprecation'])) {
67
$this->message = $parsedMsg['deprecation'];
0 commit comments