MapCustomAsset::registerAssetFiles()   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 1
dl 0
loc 2
rs 10
c 0
b 0
f 0
1
<?php
2
3
/**
4
* This file is part of the CJTTERABYTESOFT yii2-widgets
5
*
6
* (c) CJT TERABYTE LLC yii2-extension <https://github.com/cjtterabytesoft/yii2-jvectormap>
7
* For the full copyright and license information, please view the LICENSE.md
8
* file that was distributed with this source code
9
*
10
* @link: https://github.com/cjtterabytesoft/yii2-jvectormap
11
* @author: Wilmer Arámbula <[email protected]>
12
* @copyright: (c) CJT TERABYTE LLC
13
* @Widget: [yii2-jvectormap]
14
* @Assets: [MapCustomAsset]
15
* @since: 0.0.1-dev
16
**/
17
18
namespace cjtterabytesoft\widget\jvectormap\assets;
19
20
use yii\web\AssetBundle;
21
22
class MapCustomAsset extends AssetBundle
23
{
24
25
    public $sourcePath = '@webroot/maps/js';
26
27
    public function registerAssetFiles($view)     {
28
        parent::registerAssetFiles($view);
29
    }
30
31
}
32