diff --git a/src/Storage/GCS.php b/src/Storage/GCS.php index f63a86b..4d7982b 100644 --- a/src/Storage/GCS.php +++ b/src/Storage/GCS.php @@ -79,5 +79,7 @@ public function remove(array $filePaths) public function move($file, $filePath) { $this->filesystem->put($filePath, fopen($file, 'r+')); + + unlink($file); } }