| Conditions | 3 |
| Paths | 3 |
| Total Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 9 |
| CRAP Score | 3 |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 41 | 1 | private function computeIntervals(array $dates): array |
|
| 42 | { |
||
| 43 | 1 | rsort($dates); |
|
| 44 | 1 | $intervals = []; |
|
| 45 | 1 | $current = 0; |
|
| 46 | 1 | foreach ($dates as $date) { |
|
| 47 | 1 | if ( $current > 0) { |
|
| 48 | 1 | $intervals[] = $current - $date; |
|
| 49 | } |
||
| 50 | 1 | $current = $date; |
|
| 51 | } |
||
| 52 | 1 | return $intervals; |
|
| 53 | } |
||
| 54 | |||
| 68 | } |