コード例 #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);
 }