| 1 | <?php |
||
| 15 | class HelperFactory |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * @return GlobalFunctionsHelper |
||
| 19 | */ |
||
| 20 | 79 | public function createGlobalFunctionsHelper() |
|
| 24 | |||
| 25 | /** |
||
| 26 | * @param string $baseFolderPath The path of the base folder where all the I/O can occur |
||
| 27 | * @return FileSystemHelper |
||
| 28 | */ |
||
| 29 | 8 | public function createFileSystemHelper($baseFolderPath) |
|
| 33 | |||
| 34 | /** |
||
| 35 | * @param GlobalFunctionsHelper $globalFunctionsHelper |
||
| 36 | * @return EncodingHelper |
||
| 37 | */ |
||
| 38 | 26 | public function createEncodingHelper(GlobalFunctionsHelper $globalFunctionsHelper) |
|
| 42 | } |
||
| 43 |