| 1 | <?php |
||
| 7 | class RedisQueueStoreConnection extends AbstractQueueStoreConnection |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * RedisQueueStoreConnection constructor. |
||
| 11 | * |
||
| 12 | * @param array $configuration |
||
| 13 | * |
||
| 14 | * @see https://github.com/nrk/predis/wiki/Connection-Parameters#list-of-connection-parameters for a full list |
||
| 15 | * of connection parameters |
||
| 16 | */ |
||
| 17 | 3 | public function __construct(array $configuration) |
|
| 21 | |||
| 22 | /** |
||
| 23 | * @return RedisQueueStoreConnection |
||
| 24 | */ |
||
| 25 | 2 | public function connect() |
|
| 32 | |||
| 33 | /** |
||
| 34 | * Returns the client predis instance. |
||
| 35 | * |
||
| 36 | * @return Client |
||
| 37 | */ |
||
| 38 | 1 | public function getInstance() |
|
| 46 | } |
||
| 47 |