diff options
author | Bart Visscher <bartv@thisnet.nl> | 2013-02-14 17:57:19 +0100 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2013-02-15 15:58:52 +0100 |
commit | 5616690506759558a4fdb462286a398aabd0738c (patch) | |
tree | 8a9da77725a9a52516c442d8c1c3a7cfcba66984 /apps/files_external/lib/sftp.php | |
parent | cd310add23bfa27cceef52c9ab7f4be835001909 (diff) | |
download | nextcloud-server-5616690506759558a4fdb462286a398aabd0738c.tar.gz nextcloud-server-5616690506759558a4fdb462286a398aabd0738c.zip |
Style cleanup files_external
Diffstat (limited to 'apps/files_external/lib/sftp.php')
-rw-r--r-- | apps/files_external/lib/sftp.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/apps/files_external/lib/sftp.php b/apps/files_external/lib/sftp.php index 551a5a64ef2..3527f50ec98 100644 --- a/apps/files_external/lib/sftp.php +++ b/apps/files_external/lib/sftp.php @@ -7,8 +7,9 @@ */ namespace OC\Files\Storage; -set_include_path(get_include_path() . PATH_SEPARATOR . \OC_App::getAppPath('files_external') . '/3rdparty/phpseclib/phpseclib'); -require('Net/SFTP.php'); +set_include_path(get_include_path() . PATH_SEPARATOR . + \OC_App::getAppPath('files_external') . '/3rdparty/phpseclib/phpseclib'); +require 'Net/SFTP.php'; class SFTP extends \OC\Files\Storage\Common { private $host; |