Files
kiri-event/EventInterface.php
T
2023-08-11 00:12:33 +08:00

13 lines
134 B
PHP

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