Advertisement
Guest User

Untitled

a guest
May 25th, 2017
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. <?php
  2.  
  3. interface what {
  4. public function a();
  5. public function b();
  6. }
  7.  
  8. class b implements what {
  9. public function a() {
  10. echo 'what';
  11. }
  12. }
  13.  
  14. class c extends b {
  15. public function b() {
  16. echo 'what2';
  17. }
  18. }
  19.  
  20. $x = new c();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement