19 lines
243 B
PHP
19 lines
243 B
PHP
<?php
|
|
|
|
namespace Kiri\Events;
|
|
|
|
class TestListener implements EventInterface
|
|
{
|
|
|
|
|
|
/**
|
|
* @param object $event
|
|
* @return void
|
|
*/
|
|
public function process(object $event): void
|
|
{
|
|
// TODO: Implement process() method.
|
|
}
|
|
|
|
}
|