Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. <?php
  2.  
  3. class EmailSender implements SenderInterface
  4. {
  5. # prev behavior
  6.  
  7. public function accept(Visitor $visitor)
  8. {
  9. $visitor->visitSenderEmail($this);
  10. }
  11. }
  12.  
  13. class SmsSender implements SenderInterface
  14. {
  15. # prev behavior
  16.  
  17. public function accept(Visitor $visitor)
  18. {
  19. $visitor->visitSmsSender($this);
  20. }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement