public function __toString()
 {
     return parent::__toString() . "<br>Tipo de escamas: " . $this->getTipoEscamas();
 }
Esempio n. 2
0
 function __toString()
 {
     return parent::__toString() . "Tipo: Mamifero<br>" . "Numero Tetillas: " . $this->tetillas . "<br>Alimentación: " . $this->alimentacion . "<br>";
 }
Esempio n. 3
0
 public function __toString()
 {
     return parent::__toString() . "<br>Velocidades: {$this->velocidades}" . "<br>Tipo: {$this->tipo}";
 }
Esempio n. 4
0
 function __toString()
 {
     return parent::__toString() . "Tipo: Ave" . "<br>Numero Huevos: " . $this->huevos . "<br>Ecosistema: " . $this->ecosistema . "<br>";
 }
 public function __toString()
 {
     return parent::__toString() . "<br>Plumaje: " . $this->getPlumaje();
 }
 public function __toString()
 {
     return parent::__toString() . "<br>Raza: {$this->raza}";
 }
 public function __toString()
 {
     return parent::__toString() . "<br>Número de Patas: " . $this->getNumPatas();
 }
 public function __toString()
 {
     return parent::__toString() . "<br>Longitud pico: " . $this->getLongPico();
 }