WBWSmsModeBundle::getContainerExtension()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 0
dl 0
loc 2
rs 10
c 0
b 0
f 0
1
<?php
2
3
/*
4
 * This file is part of the smsmode-bundle package.
5
 *
6
 * (c) 2019 WEBEWEB
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace WBW\Bundle\SmsModeBundle;
13
14
use Symfony\Component\DependencyInjection\Extension\ExtensionInterface;
15
use Symfony\Component\HttpKernel\Bundle\Bundle;
16
use WBW\Bundle\SmsModeBundle\DependencyInjection\WBWSmsModeExtension;
17
18
/**
19
 * sMsmode bundle.
20
 *
21
 * @author webeweb <https://github.com/webeweb>
22
 * @package WBW\Bundle\SmsModeBundle
23
 */
24
class WBWSmsModeBundle extends Bundle {
25
26
    /**
27
     * {@inheritDoc}
28
     */
29
    public function getContainerExtension(): ExtensionInterface {
30
        return new WBWSmsModeExtension();
31
    }
32
}
33