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