| 1 | <?php |
||
| 4 | class FieldValueConverter { |
||
| 5 | /** |
||
| 6 | * @param array $row |
||
| 7 | * @param array $columnDefinitions |
||
| 8 | * @return array |
||
| 9 | */ |
||
| 10 | public static function convertValues(array $row, array $columnDefinitions) { |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @param mixed $value |
||
| 21 | * @param string $type |
||
| 22 | * @return mixed |
||
| 23 | */ |
||
| 24 | private static function convertValue($value, $type) { |
||
| 33 | } |
||
| 34 |