Files
kiri-core/http-server/Events/OnAfterReload.php
T

19 lines
202 B
PHP
Raw Normal View History

2020-08-31 01:27:08 +08:00
<?php
2020-09-02 11:38:47 +08:00
namespace HttpServer\Events;
2020-08-31 01:27:08 +08:00
2020-09-02 11:38:47 +08:00
use HttpServer\Events\Abstracts\Callback;
2020-08-31 01:27:08 +08:00
class OnAfterReload extends Callback
{
public function onHandler()
{
// TODO: Implement onHandler() method.
}
}