__construct()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
eloc 1
nc 1
nop 0
1
<?php
2
3
namespace TestNamespace;
4
5
use ExtendClass;
6
use NS\IClass;
7
8
/**
9
 * Generated Class
10
 */
11
class ImplementsClassWithNamespaceAndFieldStatic extends ExtendClass implements IClass
12
{
13
    /**
14
     * identificativo univoco della sessione
15
     *
16
     * @var int
17
     */
18
    private static $prova;
0 ignored issues
show
Unused Code introduced by
The property $prova is not used and could be removed.

This check marks private properties in classes that are never used. Those properties can be removed.

Loading history...
19
20
    /**
21
     * costruttore
22
     */
23
    final public function __construct()
24
    {
25
    }
26
}
27