Bar
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 6
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
wmc 0
lcom 0
cbo 0
dl 0
loc 6
c 0
b 0
f 0
1
<?php
2
3
namespace Hgraca\MicroOrm\Test\Stub;
4
5
final class Bar
6
{
7
    private $propA;
0 ignored issues
show
Unused Code introduced by
The property $propA 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...
8
9
    private $propB;
0 ignored issues
show
Unused Code introduced by
The property $propB 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...
10
}
11