Files
kiri-core/kiri-engine/Proxy/ProxyInterface.php
T
2021-10-25 18:39:30 +08:00

18 lines
211 B
PHP

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