Considere o trecho de código em php a seguir para responder à questão.
1. class Pessoa {
2. VISIBILIDADE_A $nome, $email;
3. VISIBILIDADE_B function __construct($nome, $email) {
4. $this->nome = $nome;
5. $this->email = $email;
6. }
7. }
8. class Aluno extends Pessoa {
9. public $matricula;
10. public function __construct($nome, $email, $matricula){
11. parent::__construct($nome, $email);
12. $this->matricula = $matricula;
13. }
14. public function __toString() {
15. return $this->matricula.”: “.$this->nome.” (“.$this->email.”)”;
16. }
17. }
18. echo new Aluno(“Aluno 1”, “aluno1@ufrj.br”, “GRD1001”);
Em relação à linha 18, é possível afirmar que: