2021-04-01 10:11:20 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
|
2021-08-11 01:04:57 +08:00
|
|
|
namespace Kiri;
|
2021-04-01 10:11:20 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
class Proxy
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Proxy constructor.
|
|
|
|
|
* @param IProxy $IProxy
|
|
|
|
|
*/
|
|
|
|
|
public function __construct(public IProxy $IProxy)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @return mixed
|
|
|
|
|
*/
|
|
|
|
|
public function execute(): mixed
|
|
|
|
|
{
|
|
|
|
|
return $this->IProxy->execute();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|