ImplementsClassWithNamespaceAndFieldStatic   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 16
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 0
dl 0
loc 16
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
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