Passed
Push — master ( a08d02...d2cfac )
by Jakub
02:56
created

Request2CommandBusBundle::getContainerExtension()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 8
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 8
rs 9.4285
cc 2
eloc 4
nc 2
nop 0
1
<?php
2
declare(strict_types=1);
3
4
namespace Eps\Request2CommandBusBundle;
5
6
use Eps\Request2CommandBusBundle\DependencyInjection\Request2CommandBusExtension;
7
use Symfony\Component\DependencyInjection\Extension\Extension;
8
use Symfony\Component\HttpKernel\Bundle\Bundle;
9
10
final class Request2CommandBusBundle extends Bundle
11
{
12
    public function getContainerExtension(): Extension
13
    {
14
        if ($this->extension === null) {
15
            $this->extension = new Request2CommandBusExtension();
16
        }
17
18
        return $this->extension;
19
    }
20
}
21