コード例 #1
0
ファイル: Perro.php プロジェクト: jamayo/GIT
 public function __toString()
 {
     return parent::__toString() . "<br>Velocidades: {$this->velocidades}" . "<br>Tipo: {$this->tipo}";
 }
コード例 #2
0
 public function __toString()
 {
     return parent::__toString() . "<br>Castrado: " . $this->getCastrado();
 }
コード例 #3
0
ファイル: Gato.php プロジェクト: AlbertoAragon/EjerciciosDWES
 public function __toString()
 {
     return parent::__toString() . "Raza: " . $this->raza . "<br>*************************<br>";
 }
コード例 #4
0
 public function __toString()
 {
     return parent::__toString();
 }
コード例 #5
0
 public function __toString()
 {
     return parent::__toString() . "<br>Raza: {$this->raza}";
 }
コード例 #6
0
 public function __toString()
 {
     return parent::__toString() . "<br>Rabo cortado: " . $this->getRaboCortado();
 }
コード例 #7
0
ファイル: Gato.php プロジェクト: AnaHolgado/DWES
 function __toString()
 {
     return parent::__toString() . "Especie: Gato<br>" . "Raza: " . $this->raza . "<br>Manto: " . $this->manto . "<br>";
 }