Completed
Push — master ( e8b3d8...d74459 )
by WEBEWEB
17:02
created

WBWAdminBSBBundle::getSkeletonRelativeDirectory()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php
2
3
/*
4
 * This file is part of the adminbsb-material-design-bundle package.
5
 *
6
 * (c) 2017 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\AdminBSBBundle;
13
14
use Symfony\Component\DependencyInjection\Extension\Extension;
15
use Symfony\Component\HttpKernel\Bundle\Bundle;
16
use WBW\Bundle\AdminBSBBundle\DependencyInjection\WBWAdminBSBExtension;
17
use WBW\Bundle\CoreBundle\Provider\AssetsProviderInterface;
18
use WBW\Bundle\CoreBundle\Provider\SkeletonProviderInterface;
19
20
/**
21
 * AdminBSB bundle.
22
 *
23
 * @author webeweb <https://github.com/webeweb/>
24
 * @package WBW\Bundle\AdminBSBBundle
25
 */
26
class WBWAdminBSBBundle extends Bundle implements AssetsProviderInterface, SkeletonProviderInterface {
27
28
    /**
29
     * {@inheritdoc}
30
     */
31
    public function getAssetsRelativeDirectory(): string {
32
        return static::ASSETS_RELATIVE_DIRECTORY;
33
    }
34
35
    /**
36
     * {@inheritDoc}
37
     */
38
    public function getContainerExtension(): Extension {
39
        return new WBWAdminBSBExtension();
40
    }
41
42
    /**
43
     * {@inheritDoc}
44
     */
45
    public function getSkeletonRelativeDirectory(): string {
46
        return static::SKELETON_RELATIVE_DIRECTORY;
47
    }
48
}
49