Trait Yiisoft\Yii\Debug\ProxyDecoratedCalls
Public Methods
| Method | Description | Defined By |
|---|---|---|
| __call() | Yiisoft\Yii\Debug\ProxyDecoratedCalls | |
| __get() | Yiisoft\Yii\Debug\ProxyDecoratedCalls | |
| __set() | Yiisoft\Yii\Debug\ProxyDecoratedCalls |
Method Details
| 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);
}
Signup or Login in order to comment.