Completed
Push — master ( 8c5b1a...9a26dd )
by Tomáš
17:38
created

SymplifyDefaultAutowireContainerExtension   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 1
Metric Value
wmc 2
c 1
b 0
f 1
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) 2016 Tomas Votruba (http://tomasvotruba.cz).
6
 */
7
8
namespace Symplify\DefaultAutowire\DependencyInjection\Extension;
9
10
use Symfony\Component\DependencyInjection\ContainerBuilder;
11
use Symfony\Component\DependencyInjection\Extension\Extension;
12
use Symplify\DefaultAutowire\SymplifyDefaultAutowireBundle;
13
14
final class SymplifyDefaultAutowireContainerExtension extends Extension
15
{
16
    /**
17
     * {@inheritdoc}
18
     */
19 1
    public function getAlias()
20
    {
21 1
        return SymplifyDefaultAutowireBundle::ALIAS;
22
    }
23
24
    /**
25
     * {@inheritdoc}
26
     */
27 1
    public function load(array $configs, ContainerBuilder $containerBuilder)
28
    {
29 1
    }
30
}
31