We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef740f1 commit 0d4d319Copy full SHA for 0d4d319
src/Config/Queue.php
@@ -5,7 +5,6 @@
5
use CodeIgniter\Config\BaseConfig;
6
use Michalsn\CodeIgniterQueue\Exceptions\QueueException;
7
use Michalsn\CodeIgniterQueue\Handlers\DatabaseHandler;
8
-use Michalsn\CodeIgniterQueue\Handlers\RedisHandler;
9
10
class Queue extends BaseConfig
11
{
@@ -19,7 +18,6 @@ class Queue extends BaseConfig
19
18
*/
20
public array $handlers = [
21
'database' => DatabaseHandler::class,
22
- 'redis' => RedisHandler::class,
23
];
24
25
/**
@@ -30,17 +28,6 @@ class Queue extends BaseConfig
30
28
'getShared' => true,
31
29
32
33
- /**
34
- * Redis and Predis handler config.
35
- */
36
- public array $redis = [
37
- 'host' => '127.0.0.1',
38
- 'password' => null,
39
- 'port' => 6379,
40
- 'timeout' => 0,
41
- 'database' => 0,
42
- ];
43
-
44
45
* Whether to keep the DONE jobs in the queue.
46
0 commit comments