Advertisement
Guest User

Untitled

a guest
Feb 21st, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. <?php
  2.  
  3. namespace App\Listeners;
  4.  
  5. use Illuminate\Queue\InteractsWithQueue;
  6. use Illuminate\Contracts\Queue\ShouldQueue;
  7.  
  8. class Login
  9. {
  10. /**
  11. * Create the event listener.
  12. *
  13. * @return void
  14. */
  15. public function __construct()
  16. {
  17. //
  18. }
  19.  
  20. /**
  21. * Handle the event.
  22. *
  23. * @param object $event
  24. * @return void
  25. */
  26. public function handle($event)
  27. {
  28. //
  29. }
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement