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

17 lines
115 B
PHP
Raw Normal View History

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