Advertisement
Guest User

Dave

a guest
Nov 25th, 2010
224
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.20 KB | None | 0 0
  1. <?php
  2.  
  3. class A { }
  4. class B { }
  5.  
  6. class Test
  7. {
  8.     public function doIt(B $obj)
  9.     {
  10.         return "OK";
  11.     }
  12. }
  13.  
  14. $a = new A();
  15. $b = new B();
  16. $test = new Test();
  17. echo $test->doIt($a)."\n";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement