1 | <?php |
||
10 | class FileManager implements FileManagerInterface |
||
11 | { |
||
12 | /** |
||
13 | * @param string $filepath |
||
14 | * @param array $lines |
||
15 | */ |
||
16 | public function writeFile($filepath, array $lines) |
||
28 | |||
29 | /** |
||
30 | * @param string $oldFilepath |
||
31 | * @param string $newFilepath |
||
32 | */ |
||
33 | public function replaceFile($oldFilepath, $newFilepath) |
||
45 | } |
||
46 |