MapAsset   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 7
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A registerAssetFiles() 0 2 1
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: [MapAsset]
15
* @since: 0.0.1-dev
16
**/
17
18
namespace cjtterabytesoft\widget\jvectormap\assets;
19
20
use yii\web\AssetBundle;
21
22
class MapAsset extends AssetBundle
23
{
24
    
25
    public $sourcePath = "@cjtterabytesoft/widget/jvectormap/assets/maps/js";
26
27
    public function registerAssetFiles($view)     {
28
        parent::registerAssetFiles($view);
29
    }
30
31
}