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

ContainerExtension::load()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 1
CRAP Score 1

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 3
ccs 1
cts 1
cp 1
rs 10
cc 1
eloc 1
nc 1
nop 2
crap 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