Skip to content

Commit b6bd202

Browse files
committed
Simplify usage E_ALL
1 parent 9f54915 commit b6bd202

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/Sentry/Laravel/Console/TestCommand.php

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,7 @@ public function handle(): int
4242
return 1;
4343
}
4444

45-
/**
46-
* Maximize error reporting.
47-
* 2048 is \E_STRICT which has been deprecated in PHP 8.4
48-
*/
49-
$old_error_reporting = error_reporting(E_ALL | 2048);
45+
$old_error_reporting = error_reporting(E_ALL);
5046

5147
$dsn = $this->option('dsn');
5248

0 commit comments

Comments
 (0)