fix: StaticEventHandler 버그 수정

This commit is contained in:
2024-09-18 16:08:25 +00:00
parent 4812f324e0
commit 749e8f673b
+1 -1
View File
@@ -19,7 +19,7 @@ class StaticEventHandler
foreach ($handlersList as $handlerName) {
$handler = buildStaticEventClass($handlerName);
$handler->run($general, $destGeneral, $env, ...$params);
$handler->run($general, $destGeneral, $env, $params);
}
}
}