Files
kiri-core/System/Events/EventInterface.php
T
2021-08-03 18:18:09 +08:00

17 lines
115 B
PHP

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