Files
kiri-core/core/Events/EventInterface.php
T

17 lines
110 B
PHP
Raw Normal View History

2021-08-03 18:18:09 +08:00
<?php
2021-08-11 01:04:57 +08:00
namespace Kiri\Events;
2021-08-03 18:18:09 +08:00
/**
*
*/
interface EventInterface
{
public function process(): void;
}