| 1 | <?php |
||
| 15 | class FloatMapper implements MapperInterface |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * Check if the current mapper can handle the given type. |
||
| 19 | * |
||
| 20 | * @param string $type |
||
| 21 | * |
||
| 22 | * @return bool |
||
| 23 | */ |
||
| 24 | public function canHandleType($type) |
||
| 31 | |||
| 32 | /** |
||
| 33 | * Get the TCA configuration for the current type. |
||
| 34 | * |
||
| 35 | * @param string $fieldName |
||
| 36 | * @param bool $overWriteLabel |
||
| 37 | * |
||
| 38 | * @return array |
||
| 39 | */ |
||
| 40 | public function getTcaConfiguration($fieldName, $overWriteLabel = false) |
||
| 52 | |||
| 53 | /** |
||
| 54 | * Get the database definition for the current mapper. |
||
| 55 | * |
||
| 56 | * @return string |
||
| 57 | */ |
||
| 58 | public function getDatabaseDefinition() |
||
| 62 | } |
||
| 63 |