1 | <?php |
||
16 | class InMemoryFileSystem implements FileSystemInterface |
||
17 | { |
||
18 | private $fileSystem = []; |
||
19 | |||
20 | /** |
||
21 | * @param string $filePath |
||
22 | * @param string $contents |
||
23 | */ |
||
24 | public function write($filePath, $contents) |
||
28 | |||
29 | /** |
||
30 | * @param string $filePath |
||
31 | * |
||
32 | * @return string |
||
33 | */ |
||
34 | public function get($filePath) |
||
38 | } |
||
39 |