Gerard-Meier

OOP website.

Apr 21st, 2012
34
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.26 KB | None | 0 0
  1. interface Page {
  2.     public function getBody();
  3.     public function getTitle();
  4. }
  5.  
  6. class AboutMe implements Page {
  7.     public function getBody() {
  8.         return "I'm Gerjo. This is my website.";
  9.     }
  10.  
  11.     public function getTitle() {
  12.         return "The about me page";
  13.     }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment