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

PrivateConstructorAndClone   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 2
dl 0
loc 8
c 0
b 0
f 0
rs 10

2 Methods

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