0
You know what could be the cause of the error?
my route code:
<?php
class Rotas {
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";
}
}
}