We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b84f7fd commit cdf539cCopy full SHA for cdf539c
README.md
@@ -16,11 +16,11 @@ $auth = new \SSH2\Password(SFTP_USER, SFTP_PASSWORD);
16
$sftp = new \SSH2\SFTP(SFTP_HOST, $auth);
17
18
if ($sftp->is_connected() && $sftp->is_authenticated()) {
19
- // upload
20
- $sftp->put('/path/to/my/local/file', '/remote/file');
+ // upload
+ $sftp->put('/path/to/my/local/file', '/remote/file');
21
22
- // download
23
- $sftp->get('/remote/file', '/local/destination/file');
+ // download
+ $sftp->get('/remote/file', '/local/destination/file');
24
}
25
```
26
0 commit comments