diff --git a/src/Flare.php b/src/Flare.php index ca5a694..e1ae460 100755 --- a/src/Flare.php +++ b/src/Flare.php @@ -69,7 +69,7 @@ class Flare protected bool $withStackFrameArguments = true; - /** @var array */ + /** @var array */ protected array $overriddenGroupings = []; public static function make( @@ -169,8 +169,7 @@ public function withStackFrameArguments( public function overrideGrouping( string $exceptionClass, string $type = OverriddenGrouping::ExceptionMessageAndClass, - ): self - { + ): self { $this->overriddenGroupings[$exceptionClass] = $type; return $this; diff --git a/tests/FlareTest.php b/tests/FlareTest.php index e6bbc8a..2c8a5aa 100644 --- a/tests/FlareTest.php +++ b/tests/FlareTest.php @@ -363,7 +363,7 @@ expect($report['handled'])->toBeTrue(); }); -it('can override the grouping algorithm for specific classes', function (){ +it('can override the grouping algorithm for specific classes', function () { $throwable = new RuntimeException('This is a test'); $this->flare->overrideGrouping(