18 lines
225 B
PHP
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;
|
|
|
|
}
|