Passed
Push — master ( 64ef86...92fde7 )
by WILMER
02:55
created

MapAsset::map()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
eloc 1
nc 1
nop 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\jvectormap\assets;
19
20
use yii\web\AssetBundle;
21
22
class MapAsset extends AssetBundle
23
{
24
    
25
    public $sourcePath = "@cjtterabytesoft/jvectormap/assets/maps/js";
26
27
    public function registerAssetFiles($view)     {
28
        parent::registerAssetFiles($view);
29
    }
30
31
}