summaryrefslogtreecommitdiffstats
path: root/apps/files_external/lib
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2020-04-08 22:24:54 +0200
committerChristoph Wurst <christoph@winzerhof-wurst.at>2020-04-08 22:24:54 +0200
commit85e369cddb7b347cccd597ab2f65fc201632091d (patch)
tree862221861771a6fdb0394312f8af8a0b4d8c7abc /apps/files_external/lib
parentbbba7bc45acdbfb7d69edf7998db2cd8871682bd (diff)
downloadnextcloud-server-85e369cddb7b347cccd597ab2f65fc201632091d.tar.gz
nextcloud-server-85e369cddb7b347cccd597ab2f65fc201632091d.zip
Fix multiline comments
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'apps/files_external/lib')
-rw-r--r--apps/files_external/lib/Command/Notify.php6
-rw-r--r--apps/files_external/lib/Lib/Storage/SFTP.php6
2 files changed, 6 insertions, 6 deletions
diff --git a/apps/files_external/lib/Command/Notify.php b/apps/files_external/lib/Command/Notify.php
index 8c0ed41005a..84966b4ee7b 100644
--- a/apps/files_external/lib/Command/Notify.php
+++ b/apps/files_external/lib/Command/Notify.php
@@ -208,7 +208,7 @@ class Notify extends Base {
/**
* @param int $mountId
* @return array
- */
+ */
private function getStorageIds($mountId) {
$qb = $this->connection->getQueryBuilder();
return $qb
@@ -223,7 +223,7 @@ class Notify extends Base {
* @param array $storageIds
* @param string $parent
* @return int
- */
+ */
private function updateParent($storageIds, $parent) {
$pathHash = md5(trim(\OC_Util::normalizeUnicode($parent), '/'));
$qb = $this->connection->getQueryBuilder();
@@ -237,7 +237,7 @@ class Notify extends Base {
/**
* @return \OCP\IDBConnection
- */
+ */
private function reconnectToDatabase(IDBConnection $connection, OutputInterface $output) {
try {
$connection->close();
diff --git a/apps/files_external/lib/Lib/Storage/SFTP.php b/apps/files_external/lib/Lib/Storage/SFTP.php
index 180458b2b33..3e6c8ddbde0 100644
--- a/apps/files_external/lib/Lib/Storage/SFTP.php
+++ b/apps/files_external/lib/Lib/Storage/SFTP.php
@@ -41,9 +41,9 @@ use Icewind\Streams\RetryWrapper;
use phpseclib\Net\SFTP\Stream;
/**
-* Uses phpseclib's Net\SFTP class and the Net\SFTP\Stream stream wrapper to
-* provide access to SFTP servers.
-*/
+ * 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;