From 1f9c6054fe5fa59ad2a235e55063451854353456 Mon Sep 17 00:00:00 2001 From: Will Power <1619102+willpower232@users.noreply.github.com> Date: Fri, 10 Jan 2025 10:11:50 +0000 Subject: [PATCH] Correct return type to match functionality --- src/Illuminate/Routing/Controllers/HasMiddleware.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Illuminate/Routing/Controllers/HasMiddleware.php b/src/Illuminate/Routing/Controllers/HasMiddleware.php index de2b21d5a0a9..f04b7d6b589e 100644 --- a/src/Illuminate/Routing/Controllers/HasMiddleware.php +++ b/src/Illuminate/Routing/Controllers/HasMiddleware.php @@ -7,7 +7,7 @@ interface HasMiddleware /** * Get the middleware that should be assigned to the controller. * - * @return \Illuminate\Routing\Controllers\Middleware[] + * @return array */ public static function middleware(); }