Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- interface Page {
- public function getBody();
- public function getTitle();
- }
- class AboutMe implements Page {
- public function getBody() {
- return "I'm Gerjo. This is my website.";
- }
- public function getTitle() {
- return "The about me page";
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment