Completed
Push — master ( dfea87...bbf397 )
by Tomáš
04:41
created

ContainerExtension::load()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 0
Metric Value
dl 0
loc 3
ccs 2
cts 2
cp 1
rs 10
c 0
b 0
f 0
cc 1
eloc 1
nc 1
nop 2
crap 1
1
<?php
2
3
declare(strict_types=1);
4
5
/*
6
 * This file is part of Symplify
7
 * Copyright (c) 2015 Tomas Votruba (http://tomasvotruba.cz).
8
 */
9
10
namespace Symplify\ControllerAutowire\DependencyInjection\Extension;
11
12
use Symfony\Component\DependencyInjection\ContainerBuilder;
13
use Symfony\Component\DependencyInjection\Extension\Extension;
14
use Symplify\ControllerAutowire\SymplifyControllerAutowireBundle;
15
16
final class ContainerExtension extends Extension
17
{
18
    /**
19
     * {@inheritdoc}
20
     */
21 2
    public function getAlias() : string
22
    {
23 2
        return SymplifyControllerAutowireBundle::ALIAS;
24
    }
25
26
    /**
27
     * {@inheritdoc}
28
     */
29 1
    public function load(array $config, ContainerBuilder $containerBuilder)
30
    {
31 1
    }
32
}
33