Skip to content

Commit 0d4d319

Browse files
committed
cleanup
1 parent ef740f1 commit 0d4d319

File tree

1 file changed

+0
-13
lines changed

1 file changed

+0
-13
lines changed

src/Config/Queue.php

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
use CodeIgniter\Config\BaseConfig;
66
use Michalsn\CodeIgniterQueue\Exceptions\QueueException;
77
use Michalsn\CodeIgniterQueue\Handlers\DatabaseHandler;
8-
use Michalsn\CodeIgniterQueue\Handlers\RedisHandler;
98

109
class Queue extends BaseConfig
1110
{
@@ -19,7 +18,6 @@ class Queue extends BaseConfig
1918
*/
2019
public array $handlers = [
2120
'database' => DatabaseHandler::class,
22-
'redis' => RedisHandler::class,
2321
];
2422

2523
/**
@@ -30,17 +28,6 @@ class Queue extends BaseConfig
3028
'getShared' => true,
3129
];
3230

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-
4431
/**
4532
* Whether to keep the DONE jobs in the queue.
4633
*/

0 commit comments

Comments
 (0)