class Truck extends Car {
public function speedUp() {
parent::speedUp();
$this->speed += 50;
return $this->speed;
}
}
public function speedUp() {
parent::speedUp();
$this->speed += 50;
return $this->speed;
}
}
2016-05-23