| 1 | <?php |
||
| 7 | class FsStorage implements Storage |
||
| 8 | { |
||
| 9 | 1 | public function exists(string $filename): bool |
|
| 13 | |||
| 14 | 1 | public function get(string $filename): string |
|
| 18 | |||
| 19 | 1 | public function put(string $filename, string $contents): bool |
|
| 23 | |||
| 24 | 1 | public function touch(string $filename, int $mtime): bool |
|
| 28 | |||
| 29 | 2 | public function getMtime(string $filename): int |
|
| 38 | } |
||
| 39 |