From a427d54fe4301a14a87518cc76de44bd7de5e465 Mon Sep 17 00:00:00 2001 From: Brad Kent Date: Mon, 9 Sep 2024 11:46:38 -0500 Subject: [PATCH] update route interface (remove implicit nullable type) --- src/Debug/Route/RouteInterface.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Debug/Route/RouteInterface.php b/src/Debug/Route/RouteInterface.php index 037555f7..4ea95a01 100644 --- a/src/Debug/Route/RouteInterface.php +++ b/src/Debug/Route/RouteInterface.php @@ -37,11 +37,11 @@ public function appendsHeaders(); * Process log collectively (alerts, summary, log...) * likely implemented as a subscriber for the Debug::EVENT_OUTPUT event * - * @param Event $event Event instance + * @param Event|null $event Event instance * * @return mixed */ - public function processLogEntries(Event $event); + public function processLogEntries($event = null); /** * Process log entry