0 follower

Trait Yiisoft\Yii\Debug\ProxyDecoratedCalls

Implemented byYiisoft\Yii\Debug\Collector\ContainerInterfaceProxy, Yiisoft\Yii\Debug\Collector\EventDispatcherInterfaceProxy, Yiisoft\Yii\Debug\Collector\HttpClientInterfaceProxy, Yiisoft\Yii\Debug\Collector\LoggerInterfaceProxy, Yiisoft\Yii\Debug\Collector\VarDumperHandlerInterfaceProxy

Method Details

Hide inherited methods

__call() public method

public mixed __call ( string $name, array $arguments )
$name string
$arguments array

                public function __call(string $name, array $arguments)
{
    /**
     * @psalm-suppress MixedMethodCall
     */
    return $this->decorated->$name(...$arguments);
}

            
__get() public method

public mixed __get ( string $name )
$name string

                public function __get(string $name)
{
    return $this->decorated->$name;
}

            
__set() public method

public void __set ( string $name, mixed $value )
$name string
$value mixed

                public function __set(string $name, mixed $value): void
{
    $this->decorated->$name = $value;
}