From 3066c5dcc459a790ac414f477eccbe29924206c7 Mon Sep 17 00:00:00 2001 From: fadrian06 Date: Sun, 16 Aug 2026 01:46:10 -0400 Subject: [PATCH] simplify EventDispatcher listeners typehint --- flight/core/EventDispatcher.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flight/core/EventDispatcher.php b/flight/core/EventDispatcher.php index 947d60a..98e79fb 100644 --- a/flight/core/EventDispatcher.php +++ b/flight/core/EventDispatcher.php @@ -8,7 +8,7 @@ class EventDispatcher { private static ?self $instance = null; - /** @var array> */ + /** @var array */ protected array $listeners = []; /**