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 __call( string $name, array $arguments ): mixed
$name string
$arguments array

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

            
__get() public method

public __get( string $name ): mixed
$name string

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

            
__set() public method

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

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