Files
kiri-core/kiri-engine/Proxy/ProxyInterface.php
T
2021-09-24 17:27:25 +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;
}