class Truck extends Car {
public function speedUp() {
$this->speed = parent::speedUp() + 50;
return $this->speed;
}
}
public function speedUp() {
$this->speed = parent::speedUp() + 50;
return $this->speed;
}
}
2017-01-03