Completed
Push — master ( a20969...09ff48 )
by Alec
04:11
created

StaticOnly   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 4
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 2 1
1
<?php declare(strict_types=1);
2
3
namespace AlecRabbit\Traits;
4
5
trait StaticOnly
6
{
7
    private function __construct()
8
    {
9
    }
10
}
11