public function __construct($money, $name, $age)
 {
     parent::__construct($name, $age);
     $this->money = $money;
 }
Exemple #2
0
 public function __construct($name, $years, $breed)
 {
     parent::__construct($name, $years);
     $this->breed = $breed;
 }
 public function __construct($name)
 {
     parent::__construct($name);
     $this->setPetName($name);
 }