1 | <?php |
||
15 | class PostgresExpression extends Expression |
||
16 | { |
||
17 | /* ----------------------------------------------------------------- |
||
18 | | Main Methods |
||
19 | | ----------------------------------------------------------------- |
||
20 | */ |
||
21 | |||
22 | /** |
||
23 | * Get the value of the expression. |
||
24 | * |
||
25 | * @return string |
||
26 | */ |
||
27 | 44 | public function getValue(): string |
|
51 | |||
52 | /* ----------------------------------------------------------------- |
||
53 | | Other Methods |
||
54 | | ----------------------------------------------------------------- |
||
55 | */ |
||
56 | |||
57 | /** |
||
58 | * Get the interval. |
||
59 | * |
||
60 | * @return string |
||
61 | */ |
||
62 | 44 | private function interval(): string |
|
76 | } |
||
77 |