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