Skip to content

Commit

Permalink
Merge pull request #1 from GinoPane/feature/fix_ssh2_resource
Browse files Browse the repository at this point in the history
Fix ssh2 resource
  • Loading branch information
GinoPane authored Feb 19, 2020
2 parents c56875c + 8abd6d4 commit eb67f53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Ssh/Sftp.php
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ public function send($local, $distant)
*/
public function getUrl($filename)
{
return sprintf('ssh2.sftp://%s/%s', $this->getResource(), $filename);
return sprintf('ssh2.sftp://%d/%s', $this->getResource(), $filename);
}

/**
Expand Down

0 comments on commit eb67f53

Please sign in to comment.