summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--apps/files_external/lib/sftp.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/files_external/lib/sftp.php b/apps/files_external/lib/sftp.php
index 53956182977..a2d393818f8 100644
--- a/apps/files_external/lib/sftp.php
+++ b/apps/files_external/lib/sftp.php
@@ -9,7 +9,9 @@
set_include_path(get_include_path() . PATH_SEPARATOR . OC_App::getAppPath('files_external') . '/3rdparty/phpseclib/phpseclib');
require('Net/SFTP.php');
-class OC_Filestorage_SFTP extends OC_Filestorage_Common {
+namespace OC\Files\Storage;
+
+class SFTP extends OC\Files\Storage\Common {
private $host;
private $user;
private $password;