| 1 | <?php |
||
| 2 | |||
| 3 | declare(strict_types=1); |
||
| 4 | |||
| 5 | namespace ClickHouseDB\Query\Expression; |
||
| 6 | |||
| 7 | interface Expression |
||
| 8 | { |
||
| 9 | public function needsEncoding() : bool; |
||
|
0 ignored issues
–
show
introduced
by
Loading history...
|
|||
| 10 | public function getValue() : string; |
||
|
0 ignored issues
–
show
|
|||
| 11 | } |
||
| 12 |