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

PrivateClone::__clone()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 2
c 0
b 0
f 0
rs 10
cc 1
eloc 0
nc 1
nop 0
1
<?php
2
declare(strict_types=1);
3
4
namespace Stratadox\Instantiator\Test\Fixtures;
5
6
final class PrivateClone
7
{
8
    private function __clone()
9
    {
10
    }
11
}
12