| Total Complexity | 1 |
| Total Lines | 28 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 17 | class ColumnPath extends Expression |
||
| 18 | { |
||
| 19 | |||
| 20 | /** |
||
| 21 | * Key depending on the ExpressionType property. |
||
| 22 | * |
||
| 23 | * @var string |
||
| 24 | */ |
||
| 25 | protected $keyName = 'ColumnPath'; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * List of supported fields. |
||
| 29 | * |
||
| 30 | * @var array |
||
| 31 | */ |
||
| 32 | protected $fields = [ |
||
| 33 | 'value' => null, |
||
| 34 | ]; |
||
| 35 | |||
| 36 | /** |
||
| 37 | * Sets the input values. |
||
| 38 | * |
||
| 39 | * @param string $value Column path. |
||
| 40 | */ |
||
| 41 | 3 | public function __construct($value) |
|
| 48 |