| Total Complexity | 1 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 20 | class Statics |
||
| 21 | { |
||
| 22 | use Configurable; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @var array map SilverStripe DB types to Solr types |
||
| 26 | */ |
||
| 27 | protected static $typemap; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * Get the typemap for Solr |
||
| 31 | * Note that this is very Solr oriented at the moment |
||
| 32 | * |
||
| 33 | * @return array |
||
| 34 | */ |
||
| 35 | public static function getTypeMap() |
||
| 40 |