Total Complexity | 2 |
Total Lines | 32 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
12 | class DateTime extends Expression implements ValueInterface |
||
13 | { |
||
14 | |||
15 | use DateTimeTrait; |
||
|
|||
16 | use FactoryFormatTrait; |
||
17 | use StrCastTrait; |
||
18 | |||
19 | /** |
||
20 | * An expression for the current date and time. |
||
21 | * |
||
22 | * @param DB $db |
||
23 | * @return static |
||
24 | */ |
||
25 | public static function now(DB $db) |
||
30 | ]); |
||
31 | } |
||
32 | |||
33 | /** |
||
34 | * An expression for the current date. |
||
35 | * |
||
36 | * @param DB $db |
||
37 | * @return static |
||
38 | */ |
||
39 | public static function today(DB $db) |
||
47 |