Completed
Push — master ( 87125e...a26edd )
by Andrii
06:07
created

CopyrightYears   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 0%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 1
c 1
b 0
f 0
lcom 0
cbo 1
dl 0
loc 8
ccs 0
cts 0
cp 0
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A run() 0 3 1
1
<?php
2
3
namespace hiqdev\thememanager\widgets;
4
5
use yii\base\Widget;
6
7
class CopyrightYears extends Widget
8
{
9
10
    public function run()
11
    {
12
    }
13
14
}
15