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

18 lines
211 B
PHP
Raw Normal View History

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