From 0245635aa17fa298c9b4e8b9a6c758d9db2b4304 Mon Sep 17 00:00:00 2001 From: rubenvanassche Date: Thu, 2 May 2024 13:21:37 +0000 Subject: [PATCH] Fix styling --- tests/FlareMiddleware/AddExceptionHandledTest.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/FlareMiddleware/AddExceptionHandledTest.php b/tests/FlareMiddleware/AddExceptionHandledTest.php index d6490d8..8acdadc 100644 --- a/tests/FlareMiddleware/AddExceptionHandledTest.php +++ b/tests/FlareMiddleware/AddExceptionHandledTest.php @@ -5,7 +5,7 @@ use Spatie\FlareClient\Report; use Spatie\LaravelIgnition\Facades\Flare; -it('can see when an exception is handled, meaning it is reported', function (){ +it('can see when an exception is handled, meaning it is reported', function () { $handler = new class(app()) extends Handler { public static Report $report; @@ -15,7 +15,7 @@ public function report(Throwable $e) } }; - app()->bind(ExceptionHandler::class, fn() => $handler); + app()->bind(ExceptionHandler::class, fn () => $handler); $someTriggeredException = new Exception('This is a test exception'); @@ -26,7 +26,7 @@ public function report(Throwable $e) ->toHaveKey('handled', true); }); -it('will not mark an exception handled when it is not', function (){ +it('will not mark an exception handled when it is not', function () { $someTriggeredException = new Exception('This is a test exception'); $report = Flare::createReport($someTriggeredException);