コード例 #1
0
 public function __construct($money, $name, $age)
 {
     parent::__construct($name, $age);
     $this->money = $money;
 }
コード例 #2
0
ファイル: Dog.php プロジェクト: kopche/PHP-MySQL-Course
 public function __construct($name, $years, $breed)
 {
     parent::__construct($name, $years);
     $this->breed = $breed;
 }
コード例 #3
0
 public function __construct($name)
 {
     parent::__construct($name);
     $this->setPetName($name);
 }