1 | <?php |
||
15 | class TextFileHandler |
||
16 | { |
||
17 | /** |
||
18 | * Load file from disk |
||
19 | * |
||
20 | * @throws InvalidFileLocationException |
||
21 | * @throws InvalidFileTypeException |
||
22 | * @param FileLocation $location |
||
23 | * @return TextFile |
||
24 | */ |
||
25 | public function loadFileFromPath(FileLocation $location) |
||
30 | |||
31 | /** |
||
32 | * @param TextFile $file |
||
33 | */ |
||
34 | public function writeFile(TextFile $file) |
||
39 | } |