Professor não estou conseguindo retornar o nome e cpf do titular pelo
(Só esta alterado os nomes dos métodos e variáveis)
Classe Conta:
public function getNomeTitular():string{
return $this->titular->getNome();
}
public function getCpfTitular():string{
return $this->titular->getCpf();
}
Classe Titular
public function getNome():string{
return $this->nome;
}
public function getCpf():string{
return $this->cpf;
}
O php me retorna um erro que eu não sei o que é;
Warning: Uncaught Error: Typed property Titular::$nome must not be accessed before initialization in C:....