Files
kiri-event/EventInterface.php
T

15 lines
165 B
PHP
Raw Permalink Normal View History

2023-08-11 00:12:33 +08:00
<?php
namespace Kiri\Events;
interface EventInterface
{
2026-01-09 01:06:50 +08:00
/**
* @param object $event
* @return void
*/
public function process(object $event): void;
}