Asset
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 37
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 2
Bugs 0 Features 0
Metric Value
wmc 0
c 2
b 0
f 0
lcom 0
cbo 0
dl 0
loc 37
1
<?php
2
3
namespace hiqdev\themes\obaju;
4
5
use yii\bootstrap\BootstrapPluginAsset;
6
use yii\web\AssetBundle;
7
8
/**
9
 * Theme main asset bundle.
10
 */
11
class Asset extends AssetBundle
12
{
13
    /**
14
     * {@inheritdoc}
15
     */
16
    public $sourcePath = '@hiqdev/themes/obaju/assets';
17
18
    /**
19
     * {@inheritdoc}
20
     */
21
    public $css = [
22
        '//fonts.googleapis.com/css?family=Roboto:400,500,700,300,100',
23
        'css/font-awesome.css',
24
        'css/animate.min.css',
25
        'css/style.default.css',
26
        'css/custom.css',
27
    ];
28
29
    /**
30
     * {@inheritdoc}
31
     */
32
    public $js = [
33
        'js/respond.min.js',
34
        'js/jquery.cookie.js',
35
        'js/waypoints.min.js',
36
        'js/modernizr.js',
37
        'js/bootstrap-hover-dropdown.js',
38
        'js/front.js',
39
    ];
40
41
    /**
42
     * {@inheritdoc}
43
     */
44
    public $depends = [
45
        BootstrapPluginAsset::class,
46
    ];
47
}
48