From a3787d4cab7a61519ba22aa7c9dd1d5e4e186109 Mon Sep 17 00:00:00 2001 From: Edward Yang Date: Tue, 27 Dec 2022 11:13:00 +0800 Subject: [PATCH] hook action return void --- beike/Helpers.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/beike/Helpers.php b/beike/Helpers.php index 21cd7660..b5a02045 100644 --- a/beike/Helpers.php +++ b/beike/Helpers.php @@ -585,9 +585,8 @@ function hook_filter($hookKey, $hookValue): mixed * * @param $hookKey * @param $hookValue - * @return mixed */ -function hook_action($hookKey, $hookValue): mixed +function hook_action($hookKey, $hookValue) { Eventy::action($hookKey, $hookValue); }