Completed
Pull Request — master (#8)
by Tomáš
09:02
created

ContainerExtension   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 17
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 100%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 2
c 1
b 0
f 0
lcom 0
cbo 1
dl 0
loc 17
ccs 4
cts 4
cp 1
rs 10

2 Methods

Rating   Name   Duplication   Size   Complexity  
A getAlias() 0 4 1
A load() 0 3 1
1
<?php
2
3
/*
4
 * This file is part of Symplify
5
 * Copyright (c) 2015 Tomas Votruba (http://tomasvotruba.cz).
6
 */
7
8
namespace Symplify\ControllerAutowire\DependencyInjection\Extension;
9
10
use Symfony\Component\DependencyInjection\ContainerBuilder;
11
use Symfony\Component\DependencyInjection\Extension\Extension;
12
use Symplify\ControllerAutowire\SymplifyControllerAutowireBundle;
13
14
final class ContainerExtension extends Extension
15
{
16
    /**
17
     * {@inheritdoc}
18
     */
19 2
    public function getAlias()
20
    {
21 2
        return SymplifyControllerAutowireBundle::ALIAS;
22
    }
23
24
    /**
25
     * {@inheritdoc}
26 2
     */
27
    public function load(array $config, ContainerBuilder $containerBuilder)
28 2
    {
29
    }
30
}
31