public function __construct($name, $gender, $health, $species)
 {
     parent::__construct($name, $gender, $health);
     $this->species = $species;
 }
Beispiel #2
0
 public function __construct($name, $age, $date_arrived, $bird_type)
 {
     parent::__construct($name, $age, $date_arrived);
     $this->bird_type = $bird_type;
 }