1 | <?php |
||
5 | class Factory |
||
6 | { |
||
7 | /** |
||
8 | * @param string $key |
||
9 | * |
||
10 | * @return bool |
||
11 | */ |
||
12 | 102 | public function canCreate($key) |
|
16 | |||
17 | /** |
||
18 | * @param string $key |
||
19 | * |
||
20 | * @return ConverterInterface |
||
21 | */ |
||
22 | 99 | public function create($key) |
|
32 | |||
33 | /** |
||
34 | * @param string $key |
||
35 | * |
||
36 | * @return string |
||
37 | */ |
||
38 | 102 | protected function getFullPath($key) |
|
44 | } |
||
45 |