OwlCarouselAsset
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 29
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 0
c 1
b 0
f 0
lcom 0
cbo 0
dl 0
loc 29
1
<?php
2
3
namespace hiqdev\themes\obaju;
4
5
use yii\web\AssetBundle;
6
use yii\web\JqueryAsset;
7
8
/**
9
 * Theme main asset bundle.
10
 */
11
class OwlCarouselAsset extends AssetBundle
12
{
13
    /**
14
     * {@inheritdoc}
15
     */
16
    public $sourcePath = '@hiqdev/themes/obaju/assets';
17
18
    /**
19
     * {@inheritdoc}
20
     */
21
    public $css = [
22
        'css/owl.carousel.css',
23
        'css/owl.theme.css',
24
    ];
25
26
    /**
27
     * {@inheritdoc}
28
     */
29
    public $js = [
30
        'js/owl.carousel.min.js',
31
    ];
32
33
    /**
34
     * {@inheritdoc}
35
     */
36
    public $depends = [
37
        JqueryAsset::class,
38
    ];
39
}
40