Files
kiri-core/kiri-engine/Proxy/ProxyInterface.php
T

18 lines
225 B
PHP
Raw Normal View History

2021-09-19 16:42:29 +08:00
<?php
namespace Kiri\Proxy;
use Http\Handler\Handler;
interface ProxyInterface
{
/**
* @param \Http\Handler\Handler $executor
* @return mixed
*/
public function proxy(Handler $executor): mixed;
}