예제 #1
0
파일: Strauch.php 프로젝트: OlafGroh/OOP
 public function getInfo()
 {
     return parent::getInfo() . " ist Giftig: " . $this->istGiftig;
 }
예제 #2
0
파일: Baum.php 프로젝트: OlafGroh/OOP
 public function getInfo()
 {
     return parent::getInfo() . " maxHoehe: " . $this->maxHoehe;
 }
예제 #3
0
파일: Liane.php 프로젝트: OlafGroh/OOP
 public function __construct($art, $pflanzjahr, $preis)
 {
     parent::__construct($art, $pflanzjahr, $preis);
 }