Files
kiri-core/HttpServer/IInterface/After.php
T

21 lines
201 B
PHP
Raw Normal View History

2020-09-09 10:36:00 +08:00
<?php
namespace HttpServer\IInterface;
2020-09-09 10:42:16 +08:00
use Closure;
2020-09-09 10:36:00 +08:00
interface After
{
2020-09-09 10:42:16 +08:00
/**
* @param $params
* @param Closure|null $next
* @return mixed
*/
public function onHandler($params, $next);
2020-09-09 10:36:00 +08:00
}