| 1 | <?php |
||
| 16 | class HelperFactory |
||
| 17 | { |
||
| 18 | /** |
||
| 19 | * @return GlobalFunctionsHelper |
||
| 20 | */ |
||
| 21 | 79 | public function createGlobalFunctionsHelper() |
|
| 25 | |||
| 26 | /** |
||
| 27 | * @param string $baseFolderPath The path of the base folder where all the I/O can occur |
||
| 28 | * @return FileSystemHelper |
||
| 29 | */ |
||
| 30 | 13 | public function createFileSystemHelper($baseFolderPath) |
|
| 34 | |||
| 35 | /** |
||
| 36 | * @param GlobalFunctionsHelper $globalFunctionsHelper |
||
| 37 | * @return EncodingHelper |
||
| 38 | */ |
||
| 39 | 26 | public function createEncodingHelper(GlobalFunctionsHelper $globalFunctionsHelper) |
|
| 43 | |||
| 44 | /** |
||
| 45 | * @return StringHelper |
||
| 46 | */ |
||
| 47 | public function createStringHelper() |
||
| 51 | } |
||
| 52 |