Files
kiri-event/TestListener.php
T

17 lines
211 B
PHP
Raw Normal View History

2023-08-11 00:12:33 +08:00
<?php
namespace Kiri\Events;
class TestListener implements EventInterface
{
2023-10-24 17:22:30 +08:00
/**
* @return void
*/
public function process(): void
2023-08-11 00:12:33 +08:00
{
// TODO: Implement process() method.
}
}