Guest User

Untitled

a guest
Oct 21st, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. <?php
  2. namespace Common\Observer;
  3.  
  4. interface Observer
  5. {
  6. /**
  7. * @param \Common\Observer\Subject $subject
  8. */
  9. function update($subject);
  10. }
Add Comment
Please, Sign In to add comment