Conditions | 2 |
Paths | 2 |
Total Lines | 12 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
15 | class Text |
||
16 | { |
||
17 | /** |
||
18 | * @var bool If true - print more information. |
||
19 | */ |
||
20 | private static $debugMode = false; |
||
|
|||
21 | |||
22 | /** |
||
23 | * Prints how much time took some action in milliseconds. |
||
24 | * |
||
25 | * @param float|string $startTime Time when action started |
||
26 | */ |
||
27 | public static function printTimeDuration($startTime) |
||
90 |
This check marks private properties in classes that are never used. Those properties can be removed.