Passed
Push — master ( 1894e2...bea9fb )
by Siim
14:17
created

Sf4ApiBundle   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 2
dl 0
loc 9
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
 * Created by PhpStorm.
4
 * User: siim
5
 * Date: 25.02.19
6
 * Time: 9:41
7
 */
8
9
namespace Sf4\Api;
10
11
use Sf4\Api\DependencyInjection\Sf4ApiExtension;
12
use Symfony\Component\HttpKernel\Bundle\Bundle;
13
14
class Sf4ApiBundle extends Bundle
15
{
16
17
    /**
18
     * @return Sf4ApiExtension|\Symfony\Component\DependencyInjection\Extension\ExtensionInterface|null
19
     */
20
    public function getContainerExtension()
21
    {
22
        return new Sf4ApiExtension();
23
    }
24
}
25