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

Commit

Permalink
Fixed download method in local adapter
Browse files Browse the repository at this point in the history
  • Loading branch information
dmyers committed May 8, 2014
1 parent 9a3a108 commit 69ca43e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Dmyers/Storage/Adapter/Local.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public function upload($path, $target)
*/
public function download($path, $target)
{
return \File::copy($this->computePath($target), $path);
return \File::copy($this->computePath($path), $target);
}

/**
Expand Down

0 comments on commit 69ca43e

Please sign in to comment.