Rofihimam

Untitled

Feb 12th, 2020
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.32 KB | None | 0 0
  1. <?php
  2.     interface a
  3.     {
  4.         public function foo();
  5.     }
  6.  
  7.     interface b
  8.     {
  9.         public function bar();
  10.     }
  11.  
  12.     interface c extends a, b
  13.     {
  14.         public function baz();
  15.     }
  16.  
  17.     /**
  18.      *
  19.      */
  20.     class d implements c
  21.     {
  22.         public function fool()
  23.         {
  24.         }
  25.  
  26.         public function bar()
  27.         {
  28.         }
  29.  
  30.         public function baz()
  31.         {
  32.         }
  33.     }
  34. ?>
Advertisement
Add Comment
Please, Sign In to add comment