TreeInputAssetBundle   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 1

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A init() 0 8 1
1
<?php
2
3
namespace devgroup\JsTreeWidget\widgets;
4
5
use Yii;
6
use yii\web\AssetBundle;
7
8
class TreeInputAssetBundle extends AssetBundle
9
{
10
    public function init()
11
    {
12
        $this->sourcePath = __DIR__ . '/tree-input-src/';
13
        $this->css = [
14
            'styles.css'
15
        ];
16
        parent::init();
17
    }
18
}
19