| 1 | <?php |
||
| 5 | class DummyConnectionAdapter implements ConnectionAdapterInterface |
||
| 6 | { |
||
| 7 | public function read(string $relativePath): string |
||
| 11 | |||
| 12 | public function write(string $relativePath, string $content) |
||
| 16 | |||
| 17 | public function writeStream(string $relativePath, $stream) |
||
| 21 | |||
| 22 | public function exists(string $relativePath): bool |
||
| 26 | |||
| 27 | public function unlink(string $relativePath) |
||
| 31 | |||
| 32 | public function getReadStream(string $relativePath) |
||
| 36 | } |
||
| 37 |