diff options
author | Andreas Fischer <bantu@owncloud.com> | 2014-07-12 13:58:49 +0200 |
---|---|---|
committer | Andreas Fischer <bantu@owncloud.com> | 2014-07-12 13:58:49 +0200 |
commit | d02604b3fbb4b2087ab74a4b969ef3cd4bfe2541 (patch) | |
tree | 092d67a9a781bdb9c108078eaeea241533a7c0e2 /apps | |
parent | c8024934c081238db35e2c9332493c08d1e9b402 (diff) | |
download | nextcloud-server-d02604b3fbb4b2087ab74a4b969ef3cd4bfe2541.tar.gz nextcloud-server-d02604b3fbb4b2087ab74a4b969ef3cd4bfe2541.zip |
Add short description explaining how SFTP ext storage class works.
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files_external/lib/sftp.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/files_external/lib/sftp.php b/apps/files_external/lib/sftp.php index 804f418a455..fc74d5b2a90 100644 --- a/apps/files_external/lib/sftp.php +++ b/apps/files_external/lib/sftp.php @@ -7,6 +7,10 @@ */ namespace OC\Files\Storage; +/** +* Uses phpseclib's Net_SFTP class and the Net_SFTP_Stream stream wrapper to +* provide access to SFTP servers. +*/ class SFTP extends \OC\Files\Storage\Common { private $host; private $user; |