Redis.php 348 B

1234567891011121314151617181920
  1. <?php
  2. namespace Illuminate\Support\Facades;
  3. /**
  4. * @see \Illuminate\Redis\RedisManager
  5. * @see \Illuminate\Contracts\Redis\Factory
  6. */
  7. class Redis 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 'redis';
  17. }
  18. }