2023-08-11 00:12:33 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace Kiri\Events;
|
|
|
|
|
|
|
|
|
|
class TestListener implements EventInterface
|
|
|
|
|
{
|
2026-01-09 01:06:50 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @param object $event
|
|
|
|
|
* @return void
|
|
|
|
|
*/
|
|
|
|
|
public function process(object $event): void
|
2023-08-11 00:12:33 +08:00
|
|
|
{
|
|
|
|
|
// TODO: Implement process() method.
|
|
|
|
|
}
|
|
|
|
|
|
2026-01-09 01:06:50 +08:00
|
|
|
}
|