1 | <?php |
||
5 | class FileHandlerFactory |
||
6 | { |
||
7 | /** |
||
8 | * @var array |
||
9 | */ |
||
10 | public static $handlers = [ |
||
11 | 'yml' => 'YamlHandler', |
||
12 | 'php' => 'PhpHandler', |
||
13 | ]; |
||
14 | |||
15 | /** |
||
16 | * @param string $fileType |
||
17 | * |
||
18 | * @return FileHandlerInterface |
||
19 | */ |
||
20 | public static function createFileHandler($fileType) |
||
30 | } |
||
31 |