| 1 | <?php |
||
| 7 | class DummyStorageDriver implements StorageDriverInterface |
||
| 8 | { |
||
| 9 | public function read(string $relativePath): string |
||
| 13 | |||
| 14 | public function write(string $relativePath, string $content) |
||
| 18 | |||
| 19 | public function writeStream(string $relativePath, $stream) |
||
| 23 | |||
| 24 | public function exists(string $relativePath): bool |
||
| 28 | |||
| 29 | public function unlink(string $relativePath) |
||
| 33 | |||
| 34 | public function getReadStream(string $relativePath) |
||
| 38 | } |
||
| 39 |