示例#1
0
文件: Strauch.php 项目: OlafGroh/OOP
 public function __construct($art, $pflanzjahr, $preis, $istGiftig)
 {
     parent::__construct($art, $pflanzjahr, $preis);
     $this->istGiftig = $istGiftig;
 }
示例#2
0
文件: Baum.php 项目: OlafGroh/OOP
 public function __construct($art, $pflanzjahr, $preis, $maxHoehe)
 {
     parent::__construct($art, $pflanzjahr, $preis);
     $this->maxHoehe = $maxHoehe;
 }
示例#3
0
文件: Liane.php 项目: OlafGroh/OOP
 public function __construct($art, $pflanzjahr, $preis)
 {
     parent::__construct($art, $pflanzjahr, $preis);
 }