1 | <?php |
||
8 | class Second extends Natural |
||
9 | { |
||
10 | const MIN_SECOND = 0; |
||
11 | const MAX_SECOND = 59; |
||
12 | |||
13 | /** |
||
14 | * Returns a new Second object |
||
15 | * |
||
16 | * @param int $value |
||
17 | */ |
||
18 | 31 | public function __construct($value) |
|
32 | |||
33 | /** |
||
34 | * Returns the current second. |
||
35 | * |
||
36 | * @return Second |
||
37 | */ |
||
38 | 4 | public static function now() |
|
45 | } |
||
46 |