ResizableColumnsBundle
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 17
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 0
lcom 0
cbo 1
dl 0
loc 17
c 0
b 0
f 0
1
<?php
2
3
/*
4
 * This file is part of the 2amigos/yii2-grid-view-library project.
5
 * (c) 2amigOS! <http://2amigos.us/>
6
 * For the full copyright and license information, please view
7
 * the LICENSE file that was distributed with this source code.
8
 */
9
10
namespace dosamigos\grid\bundles;
11
12
use yii\web\AssetBundle;
13
14
class ResizableColumnsBundle extends AssetBundle
15
{
16
    public $sourcePath = '@vendor/2amigos/yii2-grid-view-library/assets/resizable';
17
18
    public $js = [
19
        'js/dobtco-resizable.columns.js'
20
    ];
21
22
    public $css = [
23
        'css/dobtco-resizable.columns.css'
24
    ];
25
26
    public $depends = [
27
        'yii\web\JqueryAsset',
28
        'dosamigos\grid\bundles\ResizableStoreAsset'
29
    ];
30
}
31