Advertisement
Guest User

Untitled

a guest
Dec 19th, 2014
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. <?php
  2.  
  3. // file: ./Shape/Circle.php
  4.  
  5. namespace Shape;
  6.  
  7. class Circle extends Shape implements ShapeInterface {
  8. public function __construct() {
  9. var_dump($this);
  10. }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement