Completed
Push — master ( 9b75d7...386df4 )
by Tomasz
05:41
created

WorkerRunnersPass   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Test Coverage

Coverage 100%

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A process() 0 4 1
1
<?php
2
3
namespace Gendoria\CommandQueueBundle\DependencyInjection\Pass;
4
5
use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface;
6
use Symfony\Component\DependencyInjection\ContainerBuilder;
7
8
/**
9
 * Description of WorkersPass
10
 *
11
 * @author Tomasz Struczyński <[email protected]>
12
 */
13
class WorkerRunnersPass implements CompilerPassInterface
14
{
15
    const WORKER_RUNNER_TAG = 'gendoria_command_queue.worker';
16
    
17 1
    public function process(ContainerBuilder $container)
18
    {
19
        
20 1
    }
21
}
22