Skip to content

Commit 0977b42

Browse files
committed
add unlink after move file
1 parent b76d7d2 commit 0977b42

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/Storage/GCS.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,5 +79,7 @@ public function remove(array $filePaths)
7979
public function move($file, $filePath)
8080
{
8181
$this->filesystem->put($filePath, fopen($file, 'r+'));
82+
83+
unlink($file);
8284
}
8385
}

0 commit comments

Comments
 (0)