Flow\Template::render PHP Method

render() public method

public render ( $context = [], $blocks = [], $macros = [], $imports = [] )
    public function render($context = array(), $blocks = array(), $macros = array(), $imports = array())
    {
        ob_start();
        $this->display($context, $blocks, $macros);
        return ob_get_clean();
    }