FOF30\View\Engine\CompilingEngine::compile PHP Method

compile() protected method

A method to compile the raw view template into valid PHP
protected compile ( string $path, array $forceParams = [] ) : string
$path string The path to the view template
$forceParams array Any additional information to pass to the view template compiler
return string The template compiled to executable PHP
    protected function compile($path, array $forceParams = array())
    {
        return $this->compiler->compile($path, $forceParams);
    }