There was an error while loading. Please reload this page.
1 parent 01aa775 commit 482559bCopy full SHA for 482559b
1 file changed
bootstrap/app.php
@@ -5,6 +5,7 @@
5
use Illuminate\Foundation\Application;
6
use Illuminate\Foundation\Configuration\Exceptions;
7
use Illuminate\Foundation\Configuration\Middleware;
8
+use Sentry\Laravel\Integration;
9
10
return Application::configure(basePath: dirname(__DIR__))
11
->withRouting(
@@ -16,5 +17,6 @@
16
17
$middleware->trustProxies('*');
18
})
19
->withExceptions(function (Exceptions $exceptions): void {
- //
20
- })->create();
+ Integration::handles($exceptions);
21
+ })
22
+ ->create();
0 commit comments