Phastlight\Object::__call PHP Method

__call() public method

public __call ( $method_name, $params )
    public function __call($method_name, $params)
    {
        if (isset($this->methods[$method_name])) {
            return call_user_func_array($this->methods[$method_name], $params);
        }
    }