Skip to content
This repository was archived by the owner on Nov 10, 2022. It is now read-only.

Commit 69ca43e

Browse files
committed
Fixed download method in local adapter
1 parent 9a3a108 commit 69ca43e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Dmyers/Storage/Adapter/Local.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public function upload($path, $target)
5050
*/
5151
public function download($path, $target)
5252
{
53-
return \File::copy($this->computePath($target), $path);
53+
return \File::copy($this->computePath($path), $target);
5454
}
5555

5656
/**

0 commit comments

Comments
 (0)