15 lines
165 B
PHP
15 lines
165 B
PHP
<?php
|
|
|
|
namespace Kiri\Events;
|
|
|
|
interface EventInterface
|
|
{
|
|
|
|
/**
|
|
* @param object $event
|
|
* @return void
|
|
*/
|
|
public function process(object $event): void;
|
|
|
|
}
|