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