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

22 lines
275 B
PHP
Raw Normal View History

2020-08-31 21:29:08 +08:00
<?php
2020-10-29 18:17:25 +08:00
declare(strict_types=1);
2020-08-31 21:29:08 +08:00
2021-08-17 16:43:50 +08:00
namespace Http\IInterface;
2020-08-31 21:29:08 +08:00
2021-08-17 16:52:50 +08:00
use Http\Context\Request;
2020-08-31 21:29:08 +08:00
use Closure;
interface Limits
{
2020-12-14 15:34:59 +08:00
/**
* @param Request $request
* @param Closure $closure
* @return mixed
*/
public function next(Request $request, Closure $closure): mixed;
2020-08-31 21:29:08 +08:00
}