Completed
Push — master ( dac29f...45fb15 )
by Wilmer
05:15
created

ResetAsset   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 28
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 1
eloc 8
dl 0
loc 28
ccs 2
cts 2
cp 1
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A init() 0 3 1
1
<?php
2
3
/**
4
 * ResetAsset
5
 **/
6
7
namespace terabytesoft\assets\user;
8
9
use yii\web\AssetBundle;
10
11
class ResetAsset extends AssetBundle
12
{
13
    /**
14
     * @var array $css
15
     */
16
    public $css = [
17
        'reset.css',
18
    ];
19
20
    /**
21
     * @var array $depends
22
     */
23
    public $depends = [
24
        \yii\web\YiiAsset::class,
25
        \yii\bootstrap4\BootstrapAsset::class,
26
    ];
27
28
    /**
29
     * @var string $sourcePath
30
     */
31
    public $sourcePath = __DIR__ . '/css/reset';
32
33
    /**
34
     * init
35
     */
36 3
    public function init(): void
37
    {
38 3
        parent::init();
39 3
    }
40
}
41