FacileMongoDbBundle   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
eloc 2
dl 0
loc 8
ccs 2
cts 2
cp 1
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A getContainerExtension() 0 3 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Facile\MongoDbBundle;
6
7
use Facile\MongoDbBundle\DependencyInjection\MongoDbBundleExtension;
8
use Symfony\Component\HttpKernel\Bundle\Bundle;
9
10
/**
11
 * Class FacileMongoDbBundle.
12
 */
13
final class FacileMongoDbBundle extends Bundle
14
{
15
    /**
16 3
     * @return MongoDbBundleExtension
17
     */
18 3
    public function getContainerExtension()
19
    {
20
        return new MongoDbBundleExtension();
21
    }
22
}
23