コード例 #1
0
ファイル: practice.php プロジェクト: itayJoseph/OOP-PHP
 function __construct($name, $flavor, $record, $species)
 {
     parent::__construct();
     $this->common_name = $name;
     $this->flavor = $flavor;
     $this->record_weight = $record;
     $this->species = $species;
 }
コード例 #2
0
ファイル: playground.php プロジェクト: chasdl/5K-Registration
 function __construct($name, $flavor, $record, $species)
 {
     parent::__construct($name, $flavor, $record);
     $this->species = $species;
 }
コード例 #3
0
ファイル: Shark.php プロジェクト: matty-digital/mattbowytz
 public function __construct($n, $w)
 {
     parent::__construct($n, $w);
 }