| Conditions | 2 |
| Paths | 2 |
| Total Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 17 | 3 | public function getDefaultType($extension) |
|
| 18 | { |
||
| 19 | 3 | $map = new TypeExtensionMap(); |
|
| 20 | 3 | $extension = strtolower($extension); |
|
| 21 | 3 | if (!isset($map->get()['extensions'][$extension])) { |
|
| 22 | 1 | throw new \RuntimeException("Sorry, couldn't determine file type."); |
|
| 23 | } |
||
| 24 | 2 | return $map->get()['extensions'][$extension][0]; |
|
| 25 | } |
||
| 26 | } |
||
| 27 |