| Total Complexity | 8 |
| Total Lines | 152 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 8 | abstract class Type extends DoctrineType |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * Get type name. |
||
| 12 | * |
||
| 13 | * @return string |
||
| 14 | */ |
||
| 15 | public function getName() |
||
| 18 | } |
||
| 19 | |||
| 20 | /** |
||
| 21 | * Register Custom type. |
||
| 22 | * |
||
| 23 | * @return void |
||
| 24 | */ |
||
| 25 | public static function registerCustomTypes() |
||
| 47 | } |
||
| 48 | } |
||
| 49 | |||
| 50 | /** |
||
| 51 | * Get custom types. |
||
| 52 | * |
||
| 53 | * @param string $platformName |
||
| 54 | * |
||
| 55 | * @return array |
||
| 56 | */ |
||
| 57 | protected static function getCustomTypes($platformName) |
||
| 69 | } |
||
| 70 | |||
| 71 | /** |
||
| 72 | * Get Type categories. |
||
| 73 | * |
||
| 74 | * @return array |
||
| 75 | */ |
||
| 76 | public static function getTypeCategories() |
||
| 163 |