| 1 | <?php /** MicroFile */ |
||
| 17 | abstract class File implements IFile |
||
| 18 | { |
||
| 19 | /** @var mixed $stream File stream */ |
||
| 20 | protected $stream; |
||
| 21 | |||
| 22 | |||
| 23 | /** |
||
| 24 | * @inheritdoc |
||
| 25 | */ |
||
| 26 | public function exists($filePath) |
||
| 30 | |||
| 31 | /** |
||
| 32 | * @inheritdoc |
||
| 33 | */ |
||
| 34 | public function has($filePath) |
||
| 38 | |||
| 39 | /** |
||
| 40 | * @inheritdoc |
||
| 41 | */ |
||
| 42 | public function read($filePath) |
||
| 46 | |||
| 47 | /** |
||
| 48 | * @inheritdoc |
||
| 49 | */ |
||
| 50 | public function getSize($filePath) |
||
| 54 | |||
| 55 | /** |
||
| 56 | * @inheritdoc |
||
| 57 | */ |
||
| 58 | public function delete($filePath) |
||
| 62 | } |
||
| 63 |