Total Complexity | 1 |
Total Lines | 38 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
16 | class Time |
||
17 | { |
||
18 | // Multipliers |
||
19 | public const SECOND = 1; |
||
20 | |||
21 | public const SECONDS = 1; |
||
22 | |||
23 | public const MINUTE = 60; |
||
24 | |||
25 | public const MINUTES = 60; |
||
26 | |||
27 | public const HOUR = 3600; |
||
28 | |||
29 | public const HOURS = 3600; |
||
30 | |||
31 | public const DAY = 86400; |
||
32 | |||
33 | public const DAYS = 86400; |
||
34 | |||
35 | public const WEEK = 604800; |
||
36 | |||
37 | public const WEEKS = 604800; |
||
38 | |||
39 | public const YEAR = 31557600; |
||
40 | |||
41 | public const YEARS = 31557600; |
||
42 | |||
43 | public const FORMAT_ISO8601_ZULU = 'Y-m-d\TH:i:s\Z'; |
||
44 | |||
45 | /** |
||
46 | * Returns the current time as a DateTime object. |
||
47 | * |
||
48 | * @return DateTime The current time. |
||
49 | */ |
||
50 | 2 | public static function now(): DateTime |
|
56 |