summaryrefslogtreecommitdiffstats
path: root/apps/files_external/lib/sftp.php
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@owncloud.com>2014-07-12 13:58:49 +0200
committerVincent Petry <pvince81@owncloud.com>2014-07-14 11:45:35 +0200
commitbae4579d60e8d3bde493df9f834ae00df08cecce (patch)
treef2b094e08626fbd4eaa78312af164e7fc56940d4 /apps/files_external/lib/sftp.php
parentfae2a009221b71c8a71cffd17e8ff6628452ffb8 (diff)
downloadnextcloud-server-bae4579d60e8d3bde493df9f834ae00df08cecce.tar.gz
nextcloud-server-bae4579d60e8d3bde493df9f834ae00df08cecce.zip
Add short description explaining how SFTP ext storage class works.
Diffstat (limited to 'apps/files_external/lib/sftp.php')
-rw-r--r--apps/files_external/lib/sftp.php4
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;