Files
kiri-core/http-helper/IInterface/After.php
T

23 lines
261 B
PHP
Raw Normal View History

2020-09-09 10:36:00 +08:00
<?php
2020-10-29 18:17:25 +08:00
declare(strict_types=1);
2020-09-09 10:36:00 +08:00
2021-08-17 16:43:50 +08:00
namespace Http\IInterface;
2020-09-09 10:36:00 +08:00
2020-09-09 10:42:16 +08:00
use Closure;
2021-08-17 16:52:50 +08:00
use Http\Context\Request;
2020-09-09 10:42:16 +08:00
2020-09-09 10:36:00 +08:00
interface After
{
2020-09-09 10:42:16 +08:00
/**
2020-09-09 10:44:48 +08:00
* @param Request $request
2020-09-09 10:42:16 +08:00
* @param $params
* @return mixed
*/
2020-12-15 16:51:16 +08:00
public function onHandler(Request $request, $params): void;
2020-09-09 10:36:00 +08:00
}