From ae96b0444cb605cd553edb7f2fa561ac67b51e2f Mon Sep 17 00:00:00 2001 From: Ron Rise Date: Sun, 30 Nov 2025 15:09:10 -0500 Subject: [PATCH] chore: remove unnecessary blank line in DispatcherTest.php --- tests/Events/DispatcherTest.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/tests/Events/DispatcherTest.php b/tests/Events/DispatcherTest.php index 61c2567..8cdc422 100644 --- a/tests/Events/DispatcherTest.php +++ b/tests/Events/DispatcherTest.php @@ -9,7 +9,6 @@ use Siteworxpro\Tests\Unit; class DispatcherTest extends Unit { - /** * @throws \Throwable * @throws BindingResolutionException @@ -73,6 +72,9 @@ class DispatcherTest extends Unit $this->assertTrue($eventFired, 'The FlushEvent listener was not fired.'); } + /** + * @throws BindingResolutionException + */ public function testHasListeners(): void { $dispatcher = $this->getContainer()->make('Siteworxpro\App\Events\Dispatcher'); @@ -137,6 +139,9 @@ class DispatcherTest extends Unit unset($dispatcher); // Trigger destructor } + /** + * @throws BindingResolutionException + */ public function testToArray(): void { $dispatcher = $this->getContainer()->make('Siteworxpro\App\Events\Dispatcher');