Test Failed
Push — master ( a4091f...776eb4 )
by Joao
07:11
created

Sample1::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php
2
3
require_once __DIR__ . "/../vendor/autoload.php";
4
5
class Sample1
6
{
7
    use \ByJG\DesignPattern\Singleton;
8
9
    public $property;
10
11
    private function __construct()
12
    {
13
        $this->property = 10;
14
    }
15
}
16