1 | <?php |
||
21 | class Laravel5420RedisSentinelManager extends VersionedRedisSentinelManager |
||
22 | { |
||
23 | /** |
||
24 | * Get the Redis Connection instance represented by the specified name |
||
25 | * |
||
26 | * @param string|null $name The name of the connection as defined in the |
||
27 | * configuration |
||
28 | * |
||
29 | * @return \Illuminate\Redis\Connections\PredisConnection The configured |
||
30 | * Redis Connection instance |
||
31 | * |
||
32 | * @throws InvalidArgumentException If attempting to initialize a Redis |
||
33 | * Cluster connection |
||
34 | * @throws InvalidArgumentException If the specified connection is not |
||
35 | * defined in the configuration |
||
36 | */ |
||
37 | public function resolve($name = null) |
||
41 | } |
||
42 |