__call() public method
Calls the named method which is not a class method.
Do not call this method directly as it is a PHP magic method that will be implicitly called when an unknown method is being invoked.
| public mixed __call ( $name, $params ) | ||
|---|---|---|
| $name | string | 
 The method name  |  
| $params | array | 
 Method parameters  |  
| return | mixed | 
 The method return value  |  
| throws | yii\base\UnknownMethodException | 
 when calling unknown method  |  
Please login to continue.