1 | <?php |
||
11 | class Time |
||
12 | { |
||
13 | |||
14 | /** |
||
15 | * @return int |
||
16 | */ |
||
17 | 1 | public function now() : int |
|
21 | |||
22 | /** |
||
23 | * @param string $format |
||
24 | * @return string |
||
25 | */ |
||
26 | 1 | public function date($format) : string |
|
30 | |||
31 | /** |
||
32 | * @return int |
||
33 | */ |
||
34 | 1 | public function microtime() : int |
|
38 | |||
39 | /** |
||
40 | * @param string $string |
||
41 | * @return int |
||
42 | */ |
||
43 | 1 | public function strtotime(string $string) |
|
47 | } |
||
48 |