Conditions | 2 |
Paths | 2 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
20 | public static function createFileHandler($fileType) |
||
21 | { |
||
22 | if (!isset(self::$handlers[$fileType])) { |
||
23 | throw new \RuntimeException('Unsupported file type: ' . $fileType); |
||
24 | } |
||
25 | |||
26 | $className = '\\Incenteev\\ParameterHandler\\FileHandler\\' . self::$handlers[$fileType]; |
||
27 | |||
28 | return new $className(); |
||
29 | } |
||
30 | } |
||
31 |