From cb804465a6ebcc31ef76bddcc4d00bee59e97c95 Mon Sep 17 00:00:00 2001 From: Christoph Wurst Date: Thu, 26 Jan 2023 09:48:28 +0100 Subject: [PATCH] fixup! feat(app-framework): Add support for global middlewares Signed-off-by: Christoph Wurst --- lib/public/AppFramework/Bootstrap/IRegistrationContext.php | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/public/AppFramework/Bootstrap/IRegistrationContext.php b/lib/public/AppFramework/Bootstrap/IRegistrationContext.php index ae6cebe374c9b..3748714bb79ae 100644 --- a/lib/public/AppFramework/Bootstrap/IRegistrationContext.php +++ b/lib/public/AppFramework/Bootstrap/IRegistrationContext.php @@ -145,6 +145,7 @@ public function registerEventListener(string $event, string $listener, int $prio * @see IAppContainer::registerMiddleWare() * * @since 20.0.0 + * @since 26.0.0 Added optional argument $global */ public function registerMiddleware(string $class, bool $global = false): void;