Redis.php 442B

1234567891011121314151617181920212223
  1. <?php
  2. namespace Illuminate\Support\Facades;
  3. /**
  4. * @method static \Illuminate\Redis\Connections\Connection connection(string $name = null)
  5. *
  6. * @see \Illuminate\Redis\RedisManager
  7. * @see \Illuminate\Contracts\Redis\Factory
  8. */
  9. class Redis extends Facade
  10. {
  11. /**
  12. * Get the registered name of the component.
  13. *
  14. * @return string
  15. */
  16. protected static function getFacadeAccessor()
  17. {
  18. return 'redis';
  19. }
  20. }