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 2b18a66 commit 765832fCopy full SHA for 765832f
src/Sentry/Laravel/Console/TestCommand.php
@@ -42,8 +42,11 @@ public function handle(): int
42
return 1;
43
}
44
45
- // Maximize error reporting
46
- $old_error_reporting = error_reporting(E_ALL | E_STRICT);
+ /**
+ * 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);
50
51
$dsn = $this->option('dsn');
52
0 commit comments