This commit is contained in:
2020-09-09 10:42:16 +08:00
parent 286ee22d18
commit 8ae7ca9a18
4 changed files with 34 additions and 6 deletions
+9 -1
View File
@@ -4,9 +4,17 @@
namespace HttpServer\IInterface;
use Closure;
interface After
{
public function onHandler($params);
/**
* @param $params
* @param Closure|null $next
* @return mixed
*/
public function onHandler($params, $next);
}