Advertisement
Device-Cheat

service container symfony php subscribe

Apr 24th, 2020
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. <?php
  2. // src/BlogBundle/Service/SubscriberNotifier.php
  3. namespace BlogBundle\Service;
  4.  
  5. use BlogBundle\Entity\Post;
  6.  
  7. class SubscriberNotifier
  8. {
  9. public function notifyCreate(Post $post)
  10. {
  11. // Notify subscribers
  12. }
  13. }
  14.  
  15.  
  16.  
  17. https://github.com/shfx17
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement