InnmindAMQPBundle   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 0%

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A build() 0 3 1
1
<?php
2
declare(strict_types = 1);
3
4
namespace Innmind\AMQPBundle;
5
6
use Symfony\Component\{
7
    HttpKernel\Bundle\Bundle,
8
    DependencyInjection\ContainerBuilder
9
};
10
11
final class InnmindAMQPBundle extends Bundle
12
{
13
    /**
14
     * {@inheritdoc}
15
     */
16
    public function build(ContainerBuilder $container)
17
    {
18
    }
19
}
20