Advertisement
Guest User

Untitled

a guest
Apr 25th, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. <?php
  2. namespace App\Services;
  3. use Illuminate\Support\Facades\Facade;
  4. /**
  5. * @see \Illuminate\Session\SessionManager
  6. * @see \Illuminate\Session\Store
  7. */
  8. class NotificationFacade extends Facade
  9. {
  10. /**
  11. * Get the registered name of the component.
  12. *
  13. * @return string
  14. */
  15. protected static function getFacadeAccessor()
  16. {
  17. return 'notification';
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement