ProfileTickInfo
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
wmc 0
lcom 0
cbo 0
dl 0
loc 11
c 0
b 0
f 0
1
<?php
2
3
namespace tomzx\Profiler;
4
5
class ProfileTickInfo
6
{
7
    /**
8
     * @var int
9
     */
10
    private $line;
0 ignored issues
show
Unused Code introduced by
The property $line 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...
11
    /**
12
     * @var int
13
     */
14
    private $ticks;
0 ignored issues
show
Unused Code introduced by
The property $ticks 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...
15
}
16