summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/private/Files/Filesystem.php2
-rw-r--r--lib/private/Files/Node/Root.php2
-rw-r--r--lib/private/legacy/util.php2
-rw-r--r--lib/public/Files/IRootFolder.php2
4 files changed, 4 insertions, 4 deletions
diff --git a/lib/private/Files/Filesystem.php b/lib/private/Files/Filesystem.php
index 404ea4ed804..60900128717 100644
--- a/lib/private/Files/Filesystem.php
+++ b/lib/private/Files/Filesystem.php
@@ -627,7 +627,7 @@ class Filesystem {
* check if the directory should be ignored when scanning
* NOTE: the special directories . and .. would cause never ending recursion
*
- * @param String $dir
+ * @param string $dir
* @return boolean
*/
static public function isIgnoredDir($dir) {
diff --git a/lib/private/Files/Node/Root.php b/lib/private/Files/Node/Root.php
index b8214576d7d..189c2863a34 100644
--- a/lib/private/Files/Node/Root.php
+++ b/lib/private/Files/Node/Root.php
@@ -348,7 +348,7 @@ class Root extends Folder implements IRootFolder {
/**
* Returns a view to user's files folder
*
- * @param String $userId user ID
+ * @param string $userId user ID
* @return \OCP\Files\Folder
* @throws \OC\User\NoUserException
*/
diff --git a/lib/private/legacy/util.php b/lib/private/legacy/util.php
index f3c6cb7e363..07482a693f5 100644
--- a/lib/private/legacy/util.php
+++ b/lib/private/legacy/util.php
@@ -390,7 +390,7 @@ class OC_Util {
/**
* copies the skeleton to the users /files
*
- * @param String $userId
+ * @param string $userId
* @param \OCP\Files\Folder $userDirectory
* @throws \OCP\Files\NotFoundException
* @throws \OCP\Files\NotPermittedException
diff --git a/lib/public/Files/IRootFolder.php b/lib/public/Files/IRootFolder.php
index 38e45f49678..b041bcae301 100644
--- a/lib/public/Files/IRootFolder.php
+++ b/lib/public/Files/IRootFolder.php
@@ -37,7 +37,7 @@ interface IRootFolder extends Folder, Emitter {
/**
* Returns a view to user's files folder
*
- * @param String $userId user ID
+ * @param string $userId user ID
* @return \OCP\Files\Folder
* @since 8.2.0
*/