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

WorkersPass::process()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 4
ccs 2
cts 2
cp 1
rs 10
cc 1
eloc 1
nc 1
nop 1
crap 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