1 | <?php |
||
14 | class HelperFactory |
||
15 | { |
||
16 | /** |
||
17 | * @return GlobalFunctionsHelper |
||
18 | */ |
||
19 | 97 | public function createGlobalFunctionsHelper() |
|
23 | |||
24 | /** |
||
25 | * @param string $baseFolderPath The path of the base folder where all the I/O can occur |
||
26 | * @return FileSystemHelper |
||
27 | */ |
||
28 | 14 | public function createFileSystemHelper($baseFolderPath) |
|
32 | |||
33 | /** |
||
34 | * @param GlobalFunctionsHelper $globalFunctionsHelper |
||
35 | * @return EncodingHelper |
||
36 | */ |
||
37 | 27 | public function createEncodingHelper(GlobalFunctionsHelper $globalFunctionsHelper) |
|
41 | |||
42 | /** |
||
43 | * @return StringHelper |
||
44 | */ |
||
45 | public function createStringHelper() |
||
49 | } |
||
50 |