Total Complexity | 2 |
Total Lines | 33 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | * @param int $weeks |
||
8 | * @return int |
||
9 | */ |
||
10 | function week_ending_seconds(int $weeks = 0): int |
||
19 | } |
||
20 | } |
||
21 | |||
22 | if (!function_exists('day_ending_seconds')) { |
||
23 | /** |
||
24 | * Calculate time to end of the day in seconds |
||
25 | * |
||
26 | * @param int $days |
||
27 | * @return int |
||
28 | */ |
||
29 | function day_ending_seconds(int $days = 0): int |
||
37 | } |
||
38 | } |
||
39 |