hook action return void

This commit is contained in:
Edward Yang 2022-12-27 11:13:00 +08:00
parent 63b41e54a6
commit a3787d4cab
1 changed files with 1 additions and 2 deletions

View File

@ -585,9 +585,8 @@ function hook_filter($hookKey, $hookValue): mixed
* *
* @param $hookKey * @param $hookKey
* @param $hookValue * @param $hookValue
* @return mixed
*/ */
function hook_action($hookKey, $hookValue): mixed function hook_action($hookKey, $hookValue)
{ {
Eventy::action($hookKey, $hookValue); Eventy::action($hookKey, $hookValue);
} }