diff --git a/src/Psalm/Internal/ErrorHandler.php b/src/Psalm/Internal/ErrorHandler.php index e4b1b44966f..13c32561081 100644 --- a/src/Psalm/Internal/ErrorHandler.php +++ b/src/Psalm/Internal/ErrorHandler.php @@ -14,7 +14,6 @@ use function set_exception_handler; use const E_ALL; -use const E_STRICT; use const STDERR; /** @@ -59,7 +58,7 @@ private function __construct() private static function setErrorReporting(): void { - error_reporting(E_ALL | E_STRICT); + error_reporting(E_ALL); ini_set('display_errors', '1'); }