StaticOnly   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

Changes 2
Bugs 0 Features 1
Metric Value
eloc 1
c 2
b 0
f 1
dl 0
loc 8
rs 10
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
    /**
8
     * StaticOnly private constructor.
9
     * @codeCoverageIgnore
10
     */
11
    private function __construct()
12
    {
13
    }
14
}
15