| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 15 | 3 | public function chronometer($labels = [], int $precision = 4): Closure |
|
| 16 | { |
||
| 17 | 3 | $start = microtime(true); |
|
| 18 | |||
| 19 | 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 |