Completed
Push — master ( 6dd5c7...9b75d7 )
by Tomasz
03:38
created

WorkersPass   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 1
Bugs 0 Features 0
Metric Value
wmc 1
c 1
b 0
f 0
lcom 0
cbo 0
dl 0
loc 9
ccs 2
cts 2
cp 1
rs 10

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 WorkersPass implements CompilerPassInterface
14
{
15
    const WORKER_TAG = 'gendoria_command_queue.worker';
16
    
17 1
    public function process(ContainerBuilder $container)
18
    {
19
        
20 1
    }
21
}
22