ProjectAsset
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 0
lcom 0
cbo 1
dl 0
loc 8
c 0
b 0
f 0
1
<?php
2
/**
3
 * AHnames implementation of HiPanel
4
 *
5
 * @link      https://ahnames.com/
6
 * @package   hipanel
7
 * @license   proprietary
8
 * @copyright Copyright (c) 2015-2017, AHnames (https://ahnames.com/)
9
 */
10
11
12
namespace ahnames\hipanel\assets;
13
14
class ProjectAsset extends \yii\web\AssetBundle
15
{
16
    public $sourcePath = '@ahnames/hipanel/assets/ProjectAssetFiles';
17
18
    public $css = [
19
        'css/project.css',
20
    ];
21
}
22