Files
kiri-core/core/Proxy/ProxyInterface.php
T
as2252258@163.com ff58d0faef 111
2021-09-19 16:42:29 +08:00

18 lines
225 B
PHP

<?php
namespace Kiri\Proxy;
use Http\Handler\Handler;
interface ProxyInterface
{
/**
* @param \Http\Handler\Handler $executor
* @return mixed
*/
public function proxy(Handler $executor): mixed;
}