From cfa87bee4e17e07701758c37bf6755d70ddd7368 Mon Sep 17 00:00:00 2001 From: fadrian06 Date: Sun, 16 Aug 2026 01:11:51 -0400 Subject: [PATCH] remove unneccesary references --- flight/core/Dispatcher.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flight/core/Dispatcher.php b/flight/core/Dispatcher.php index 6b5f81b..52a6ec1 100644 --- a/flight/core/Dispatcher.php +++ b/flight/core/Dispatcher.php @@ -265,8 +265,8 @@ class Dispatcher * * @deprecated This method will be removed. * @param (callable(mixed[] &$params, mixed &$output): (void|never|false))[] $filters Callable filters. - * @param mixed[] $params Callable input. - * @param mixed $output Callable output. + * @param mixed[] &$params Callable input. + * @param mixed &$output Callable output. * @throws Throwable If any of the callable filters throw an `Throwable`. * @throws InvalidArgumentException If any of the callable filters is not a `callable`. */