feat(plugin): add subscribe.url hook

This commit is contained in:
xboard
2025-02-06 18:17:16 +08:00
parent 667e02460c
commit 7c0434d182
2 changed files with 10 additions and 5 deletions
+2 -2
View File
@@ -45,9 +45,9 @@ class HookManager
* @param mixed ...$args 其他参数
* @return mixed
*/
public static function filter(string $hook, mixed $value, mixed ...$args): mixed
public static function filter(string $hook, mixed $value): mixed
{
return Eventy::filter($hook, $value, ...$args);
return Eventy::filter($hook, $value);
}
/**