Completed
Push — master ( fb564e...436895 )
by Matthew
05:20 queued 01:57
created

JobManager   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 1
dl 0
loc 9
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A setRedis() 0 4 1
1
<?php
2
3
namespace Dtc\QueueBundle\Redis;
4
5
use Dtc\QueueBundle\Model\PriorityJobManager;
6
7
/**
8
 * For future implementation.
9
 */
10
abstract class JobManager extends PriorityJobManager
11
{
12
    private $redis;
13
14
    public function setRedis(RedisInterface $redis)
15
    {
16
        $this->redis = $redis;
17
    }
18
}
19