Guest User

Untitled

a guest
Feb 15th, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. <?php
  2.  
  3. class Concert {
  4. public function push(HumanBeingInterface $humanBeing) {
  5. return $humanBeing->sing();
  6. }
  7. }
  8.  
  9. $concert = new Concert();
  10. $concert->push(new UnlceBob()); // It works
  11.  
  12. $concert->push(new Unclexo()); // This wont work
Add Comment
Please, Sign In to add comment