1 | <?php |
||
8 | class FileStorage implements FileStorageContract |
||
9 | { |
||
10 | |||
11 | /** |
||
12 | * @inheritdoc |
||
13 | */ |
||
14 | public function saveFile(FileContract $file) |
||
19 | |||
20 | |||
21 | /** |
||
22 | * @inheritdoc |
||
23 | */ |
||
24 | public function getFile($id) |
||
28 | |||
29 | |||
30 | /** |
||
31 | * @inheritdoc |
||
32 | */ |
||
33 | public function deleteFile($id) |
||
45 | |||
46 | |||
47 | /** |
||
48 | * @inheritdoc |
||
49 | */ |
||
50 | public function idExists($id) |
||
54 | } |
||
55 |