Session.php 346 B

1234567891011121314151617181920
  1. <?php
  2. namespace Illuminate\Support\Facades;
  3. /**
  4. * @see \Illuminate\Session\SessionManager
  5. * @see \Illuminate\Session\Store
  6. */
  7. class Session extends Facade
  8. {
  9. /**
  10. * Get the registered name of the component.
  11. *
  12. * @return string
  13. */
  14. protected static function getFacadeAccessor()
  15. {
  16. return 'session';
  17. }
  18. }