This commit is contained in:
2026-01-09 01:06:50 +08:00
parent 846e195efa
commit c08c1731d1
2 changed files with 15 additions and 13 deletions
+7 -6
View File
@@ -4,10 +4,11 @@ namespace Kiri\Events;
interface EventInterface
{
/**
* @param object $event
* @return void
*/
public function process(object $event): void;
/**
* @return void
*/
public function process(): void;
}
}