Files
kiri-core/System/Events/EventDispatchInterface.php
T
2021-08-02 16:38:50 +08:00

19 lines
201 B
PHP

<?php
namespace Snowflake\Events;
/**
*
*/
interface EventDispatchInterface
{
public function getZOrder(): int;
public function onHandler(): void;
public function stopPagination(): bool;
}