Advertisement
fabi0

Untitled

Nov 10th, 2013
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.15 KB | None | 0 0
  1. <?php
  2.  
  3. include 'iDecorator.php';
  4.  
  5. class Article implements iDecorator {
  6.  
  7.     public function getData() {
  8.         return 'Hello decorator';
  9.     }
  10.  
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement