| Total Complexity | 4 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 9 | class MySQLGISSchemaManager extends MySQLSchemaManager |
||
| 10 | { |
||
| 11 | use GISSchemaManager; |
||
|
|
|||
| 12 | |||
| 13 | public function geography($values) |
||
| 14 | { |
||
| 15 | // ATTENTION: GEOGRAPHY IS NOT SUPPORTED BY MYSQL. THIS IS STRICTLY FOR COMPATIBILITY |
||
| 16 | return 'geometry'; |
||
| 17 | } |
||
| 18 | |||
| 19 | public function translateStGeometryTypeFilter($field, $value, $inclusive) |
||
| 29 | } |
||
| 30 | } |
||
| 31 |