Total Complexity | 4 |
Total Lines | 35 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | class TempFilesystem extends Filesystem |
||
8 | { |
||
9 | private array $temp_files = []; |
||
10 | |||
11 | /** |
||
12 | * @param string $path |
||
13 | * @return resource|null |
||
14 | * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException |
||
15 | */ |
||
16 | public function readFile(string $path) |
||
19 | } |
||
20 | |||
21 | /** |
||
22 | * @param string $path |
||
23 | * @param string|resource $resource |
||
24 | * @param array $options |
||
25 | * |
||
26 | * @throws \Illuminate\Contracts\Filesystem\FileExistsException |
||
27 | * @return string |
||
28 | */ |
||
29 | public function store(string $path, $resource = '', $options = []): string |
||
36 | } |
||
37 | |||
38 | public function clean() |
||
44 | } |