| Total Complexity | 2 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 7 | class MergeFilesystem extends Filesystem |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * Write the origin stream into destination. |
||
| 11 | * |
||
| 12 | * @param string $destination |
||
| 13 | * @param resource|null $origin |
||
| 14 | * @param array $options |
||
| 15 | * |
||
| 16 | * @throws \Illuminate\Contracts\Filesystem\FileExistsException |
||
| 17 | * |
||
| 18 | * @return string |
||
| 19 | */ |
||
| 20 | public function store(string $destination, $origin, $options = []): string |
||
| 33 |