Trait Yiisoft\Yii\Debug\ProxyDecoratedCalls
Public Methods
| Method | Description | Defined By |
|---|---|---|
| __call() | Yiisoft\ |
|
| __get() | Yiisoft\ |
|
| __set() | Yiisoft\ |
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);
}
User Contributed Notes
Leave a comment
Join the conversation to share a note.