Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2020-04-09 17:09:23 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2020-04-09 17:09:23 +0300
commita8a06a82d2b93c17b3014f0d468f23239100ca10 (patch)
tree07a13880071bc15ddec3810c21327af5f4f09ff4 /apps
parent44577e4345066952622feca9ef69c24fc23d08ab (diff)
Remove trailing whitespaces from comments
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'apps')
-rw-r--r--apps/dav/lib/SystemTag/SystemTagsObjectMappingCollection.php2
-rw-r--r--apps/files_external/templates/settings.php2
-rw-r--r--apps/files_versions/lib/Expiration.php2
-rw-r--r--apps/user_ldap/lib/Configuration.php4
-rw-r--r--apps/user_ldap/lib/LDAPProvider.php4
-rw-r--r--apps/user_ldap/tests/Integration/ExceptionOnLostConnection.php2
6 files changed, 8 insertions, 8 deletions
diff --git a/apps/dav/lib/SystemTag/SystemTagsObjectMappingCollection.php b/apps/dav/lib/SystemTag/SystemTagsObjectMappingCollection.php
index 712a18d5dbc..bb74884419a 100644
--- a/apps/dav/lib/SystemTag/SystemTagsObjectMappingCollection.php
+++ b/apps/dav/lib/SystemTag/SystemTagsObjectMappingCollection.php
@@ -189,7 +189,7 @@ class SystemTagsObjectMappingCollection implements ICollection {
}
/**
- * Create a sabre node for the mapping of the
+ * Create a sabre node for the mapping of the
* given system tag to the collection's object
*
* @param ISystemTag $tag
diff --git a/apps/files_external/templates/settings.php b/apps/files_external/templates/settings.php
index 04c33f73b8b..5ec70031214 100644
--- a/apps/files_external/templates/settings.php
+++ b/apps/files_external/templates/settings.php
@@ -142,7 +142,7 @@
});
?>
<?php foreach ($sortedBackends as $backend): ?>
- <?php if ($backend->getDeprecateTo()) continue; // ignore deprecated backends ?>
+ <?php if ($backend->getDeprecateTo()) continue; // ignore deprecated backends?>
<option value="<?php p($backend->getIdentifier()); ?>"><?php p($backend->getText()); ?></option>
<?php endforeach; ?>
</select>
diff --git a/apps/files_versions/lib/Expiration.php b/apps/files_versions/lib/Expiration.php
index d57bc20dc81..a56042e76b8 100644
--- a/apps/files_versions/lib/Expiration.php
+++ b/apps/files_versions/lib/Expiration.php
@@ -129,7 +129,7 @@ class Expiration {
}
/**
- * Read versions_retention_obligation, validate it
+ * Read versions_retention_obligation, validate it
* and set private members accordingly
*/
private function parseRetentionObligation() {
diff --git a/apps/user_ldap/lib/Configuration.php b/apps/user_ldap/lib/Configuration.php
index a04ea638d09..3c6693b151e 100644
--- a/apps/user_ldap/lib/Configuration.php
+++ b/apps/user_ldap/lib/Configuration.php
@@ -311,7 +311,7 @@ class Configuration {
/**
* Sets multi-line values as arrays
- *
+ *
* @param string $varName name of config-key
* @param array|string $value to set
*/
@@ -387,7 +387,7 @@ class Configuration {
/**
* Sets a scalar value.
- *
+ *
* @param string $varName name of config key
* @param mixed $value to set
*/
diff --git a/apps/user_ldap/lib/LDAPProvider.php b/apps/user_ldap/lib/LDAPProvider.php
index 3119bcb0132..75267165cdf 100644
--- a/apps/user_ldap/lib/LDAPProvider.php
+++ b/apps/user_ldap/lib/LDAPProvider.php
@@ -114,7 +114,7 @@ class LDAPProvider implements ILDAPProvider, IDeletionFlagSupport {
}
/**
- * Translate a LDAP DN to an internal user name. If there is no mapping between
+ * Translate a LDAP DN to an internal user name. If there is no mapping between
* the DN and the user name, a new one will be created.
* @param string $dn LDAP DN
* @return string with the internal user name
@@ -147,7 +147,7 @@ class LDAPProvider implements ILDAPProvider, IDeletionFlagSupport {
}
/**
- * Return a new LDAP connection resource for the specified user.
+ * Return a new LDAP connection resource for the specified user.
* The connection must be closed manually.
* @param string $uid user id
* @return resource of the LDAP connection
diff --git a/apps/user_ldap/tests/Integration/ExceptionOnLostConnection.php b/apps/user_ldap/tests/Integration/ExceptionOnLostConnection.php
index 50c45b49048..33eb1c70d6f 100644
--- a/apps/user_ldap/tests/Integration/ExceptionOnLostConnection.php
+++ b/apps/user_ldap/tests/Integration/ExceptionOnLostConnection.php
@@ -36,7 +36,7 @@ use OCA\User_LDAP\LDAP;
*
* LDAP must be available via toxiproxy.
*
- * This test must be run manually.
+ * This test must be run manually.
*
*/
class ExceptionOnLostConnection {