1234567891011121314151617181920212223 |
- <?php
-
- namespace Illuminate\Support\Facades;
-
- /**
- * @method static \Illuminate\Redis\Connections\Connection connection(string $name = null)
- *
- * @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';
- }
- }
|