| Conditions | 2 |
| Paths | 2 |
| Total Lines | 10 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 4 |
| CRAP Score | 2.3149 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 48 | 4 | private function getClassName($path) |
|
| 49 | { |
||
| 50 | 4 | $className = 'Pumpkin\Database\TableConverter\\' . pathinfo($path, PATHINFO_EXTENSION) . 'TableConverter'; |
|
| 51 | 4 | if (class_exists($className)) { |
|
| 52 | 4 | return $className; |
|
| 53 | } |
||
| 54 | throw new \RuntimeException( |
||
| 55 | sprintf('This file extension is not supported: "%s"', pathinfo($path, PATHINFO_EXTENSION)) |
||
| 56 | ); |
||
| 57 | } |
||
| 58 | } |
||
| 59 |