21 lines
348 B
PHP
21 lines
348 B
PHP
<?php
|
|
|
|
namespace Illuminate\Support\Facades;
|
|
|
|
/**
|
|
* @see \Illuminate\Redis\RedisManager
|
|
* @see \Illuminate\Contracts\Redis\Factory
|
|
*/
|
|
class Redis extends Facade
|
|
{
|
|
/**
|
|
* Get the registered name of the component.
|
|
*
|
|
* @return string
|
|
*/
|
|
protected static function getFacadeAccessor()
|
|
{
|
|
return 'redis';
|
|
}
|
|
}
|