Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
15 | 3 | public function chronometer(array $labels = [], int $precision = 4): Closure |
|
16 | { |
||
17 | 3 | $start = microtime(true); |
|
18 | |||
19 | 3 | return function ($labelz = []) use ($labels, $precision, $start) { |
|
20 | 3 | $delta = microtime(true) - $start; |
|
21 | |||
22 | 3 | $this->track( |
|
23 | 3 | round($delta, $precision), |
|
24 | 3 | array_merge($labels, $labelz) |
|
25 | ); |
||
37 |