public function __construct($id, $nome, $cpf, $endereco)
 {
     parent::__construct($id, $nome, $cpf, $endereco);
     $this->tipo = 1;
 }
Exemple #2
0
 public function __construct($nome, $telefone, $endereco, $cpf, $id = null)
 {
     parent::__construct($nome, $telefone, $endereco, $id);
     $this->cpf = $cpf;
 }