| 1 | <?php |
||
| 15 | class ColumnPath extends Expression |
||
| 16 | { |
||
| 17 | |||
| 18 | protected $keyName = 'ColumnPath'; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * List of supported fields. |
||
| 22 | * |
||
| 23 | * @var array |
||
| 24 | */ |
||
| 25 | protected $fields = [ |
||
| 26 | 'value' => null, |
||
| 27 | ]; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * Sets the input values. |
||
| 31 | * |
||
| 32 | * @param string $value Column path. |
||
| 33 | */ |
||
| 34 | 3 | public function __construct($value) |
|
| 40 | } |
||
| 41 |