From 146d290426085f31e423869faeaaf6fdf77ba542 Mon Sep 17 00:00:00 2001 From: Jan Wennrich <jan.wennrich@pcsg.de> Date: Tue, 9 Apr 2024 21:49:59 +0000 Subject: [PATCH] refactor(EventHandler): add missing return type to onInstall method --- src/QUI/Test/EventHandler.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/QUI/Test/EventHandler.php b/src/QUI/Test/EventHandler.php index 1df3b4a..dfbc304 100644 --- a/src/QUI/Test/EventHandler.php +++ b/src/QUI/Test/EventHandler.php @@ -31,7 +31,7 @@ public static function onUserGetAvatar(UserInterfaces $User) /** * @param Package $Package */ - public static function onInstall(Package $Package) + public static function onInstall(Package $Package): void { Log::writeRecursive('ON INSTALL'); Log::writeRecursive($Package->getName()); -- GitLab