generated from spatie/package-skeleton-laravel
-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for better registering flare in laravel 11
- Loading branch information
1 parent
3400ed6
commit e04f998
Showing
3 changed files
with
81 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?php | ||
|
||
namespace Spatie\LaravelIgnition\Support; | ||
|
||
use Illuminate\Foundation\Configuration\Exceptions; | ||
use Spatie\FlareClient\Flare; | ||
use Throwable; | ||
|
||
class LaravelFlare extends Flare | ||
{ | ||
public static function handles(Exceptions $exceptions): void | ||
{ | ||
$exceptions->reportable(static function (Throwable $exception): Flare { | ||
return app(Flare::class)->report($exception); | ||
}); | ||
} | ||
} |