| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 8 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 51 | 81 | protected static function process(int $jdn): array |
|
| 52 | { |
||
| 53 | 81 | $r = (($jdn - 1723856) % 1461); |
|
| 54 | 81 | $n = ($r % 365) + 365 * (int) ($r / 1460); |
|
| 55 | |||
| 56 | 81 | $year = 4 * (int) (($jdn - 1723856) / 1461) + |
|
| 57 | 81 | (int) ($r / 365) - (int) ($r / 1460); |
|
| 58 | 81 | $month = (int) ($n / 30) + 1; |
|
| 59 | 81 | $day = ($n % 30) + 1; |
|
| 60 | |||
| 61 | 81 | return compact('day', 'month', 'year'); |
|
| 62 | } |
||
| 63 | |||
| 78 |