Skip to content

Commit 277e34b

Browse files
committed
Exclude E_DEPRECATED from error_reporting
This error is filtered in https://github.com/phpstan/phpstan-src/blob/5797c27e0d7e943b67b717f023e2ac2fd8a25140/src/Analyser/FileAnalyser.php#L329 anyway. But it might still be seen when the deprecation is triggered by one of autoload.files in included Composer autoloaders.
1 parent f361e35 commit 277e34b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bin/phpstan

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ use PHPStan\Internal\ComposerHelper;
1111
use Symfony\Component\Console\Helper\ProgressBar;
1212

1313
(function () {
14-
error_reporting(E_ALL);
14+
error_reporting(E_ALL & ~E_DEPRECATED);
1515
ini_set('display_errors', 'stderr');
1616
if (version_compare(PHP_VERSION, '7.4.0', '<')) {
1717
// PHP earlier than 7.4.x with OpCache triggers a bug when we intercept

0 commit comments

Comments
 (0)