Do you know what could be the cause of the error?
myroutecode:
<?phpclassRotas{private$telaAtual="primeira";
public function getTelaAtual() {
return $this->telaAtual;
}
public function setTelaAtual($value) {
return $this->telaAtual = $value;
}
public function verifyRoutes() {
if($this->getTelaAtual() == "primeira"){
include "../backend/components/firstpage.php";
}
}
}