Skip to content

Instantly share code, notes, and snippets.

@JacobHsu
Created August 16, 2014 07:44
Show Gist options
  • Save JacobHsu/f816632a90116e37d56b to your computer and use it in GitHub Desktop.
Save JacobHsu/f816632a90116e37d56b to your computer and use it in GitHub Desktop.
#PHP :Overriding Parent Methods
<html>
<head>
<title>Override!</title>
</head>
<body>
<p>
<?php
class Vehicle {
public function honk() {
return "HONK HONK!";
}
}
// Add your code below!
class Bicycle extends Vehicle {
// Your code here
public function honk() {
return "Beep beep!";
}
}
$bicycle = new Bicycle();
echo $bicycle -> honk();
?>
</p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment