Skip to content

Commit 77ad824

Browse files
committed
Revert "Swallow errors"
This reverts commit ee8cc2666bc8d88c3b4236948f359cb78b5733d3.
1 parent ab6fdd8 commit 77ad824

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

DeprecationErrorHandler/Deprecation.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ public function __construct($message, array $trace, $file)
6161
$this->triggeringFile = $file;
6262
if (isset($line['object']) || isset($line['class'])) {
6363
set_error_handler(function () {});
64-
$parsedMsg = @unserialize($this->message);
64+
$parsedMsg = unserialize($this->message);
6565
restore_error_handler();
6666
if ($parsedMsg && isset($parsedMsg['deprecation'])) {
6767
$this->message = $parsedMsg['deprecation'];

0 commit comments

Comments
 (0)