1 | <?php |
||
7 | class Utils |
||
8 | { |
||
9 | /** |
||
10 | * Get the Carbon instance for the current time |
||
11 | * |
||
12 | * @return \Carbon\Carbon |
||
13 | */ |
||
14 | 9 | public static function now() |
|
18 | |||
19 | /** |
||
20 | * Get the Carbon instance for the timestamp |
||
21 | * |
||
22 | * @param int $timestamp |
||
23 | * @return \Carbon\Carbon |
||
24 | */ |
||
25 | 18 | public static function timestamp($timestamp) |
|
29 | } |
||
30 |