Microweber\Controllers\DefaultController::__call PHP Method

__call() public method

public __call ( $method, $args )
    public function __call($method, $args)
    {
        if (isset($this->functions[$method])) {
            call_user_func_array($this->functions[$method], $args);
        } else {
            // error out
        }
    }