Completed
Push — master ( 444139...b6b37e )
by Damien
09:32
created

SamlCore   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 21
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 1

Importance

Changes 0
Metric Value
wmc 1
lcom 1
cbo 1
dl 0
loc 21
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A init() 0 8 1
1
<?php
2
3
/**
4
 * @copyright  Copyright (c) Flipbox Digital Limited
5
 */
6
7
namespace flipbox\saml\core\web\assets\bundles;
8
9
use craft\web\AssetBundle;
10
use craft\web\assets\cp\CpAsset;
11
12
class SamlCore extends AssetBundle
13
{
14
15
    public $sourcePath = '@flipbox/saml/core/web/assets';
16
17
    public $depends = [
18
        CpAsset::class,
19
    ];
20
21
    /**
22
     * @inheritdoc
23
     */
24
    public function init()
25
    {
26
        $this->css = [
27
            'css/saml-core.css',
28
        ];
29
30
        parent::init();
31
    }
32
}
33