Passed
Pull Request — master (#50)
by Wilmer
02:02
created

Info   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 5
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 1
eloc 2
dl 0
loc 5
ccs 0
cts 3
cp 0
rs 10
c 1
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A frameworkVersion() 0 3 1
1
<?php
2
declare(strict_types = 1);
3
4
namespace Yiisoft\Asset;
5
6
final class Info
7
{
8
    public static function frameworkVersion(): string
9
    {
10
        return '3.0.0';
11
    }
12
}
13