Files
kiri-event/EventInterface.php
2026-01-09 01:06:50 +08:00

15 lines
165 B
PHP

<?php
namespace Kiri\Events;
interface EventInterface
{
/**
* @param object $event
* @return void
*/
public function process(object $event): void;
}