$f3->route('GET /render',
function() {
$a = new Template;
echo $a->render('/app/tmpl/abc.htm');
}
);$f3->route('GET /render',
function() {
echo Template::instance()->render('/app/tmpl/abc.htm');
}
);https://github.com/bcosca/fatfree/blob/master/lib/template.php
Does not extend Base class.
Perhaps you have written your own class with the same name, that does?
The error message should give you the file path and line number.