Passed
Push — master ( dff13b...dab0e7 )
by Jesse
03:04
created

PrivateConstructor   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 4
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 1
dl 0
loc 4
c 0
b 0
f 0
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 2 1
1
<?php
2
declare(strict_types=1);
3
4
namespace Stratadox\Instantiator\Test\Fixtures;
5
6
final class PrivateConstructor
7
{
8
    private function __construct()
9
    {
10
    }
11
}
12