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

19 lines
201 B
PHP
Raw Normal View History

2021-08-02 16:38:50 +08:00
<?php
namespace Snowflake\Events;
/**
*
*/
interface EventDispatchInterface
{
public function getZOrder(): int;
public function onHandler(): void;
public function stopPagination(): bool;
}