diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2018-11-15 11:51:28 +0100 |
---|---|---|
committer | Christoph Wurst <christoph@winzerhof-wurst.at> | 2018-11-15 11:57:05 +0100 |
commit | 1b85ef4bf2a18f7ee7bca7bcd3d7702362125d2e (patch) | |
tree | 8416ad170617316f366d30c3f9a698de36eb8308 /lib | |
parent | 159d75945a57be7a391cc16a17744adfd4376473 (diff) | |
download | nextcloud-server-1b85ef4bf2a18f7ee7bca7bcd3d7702362125d2e.tar.gz nextcloud-server-1b85ef4bf2a18f7ee7bca7bcd3d7702362125d2e.zip |
Fix string doc type casing
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/Files/Filesystem.php | 2 | ||||
-rw-r--r-- | lib/private/Files/Node/Root.php | 2 | ||||
-rw-r--r-- | lib/private/legacy/util.php | 2 | ||||
-rw-r--r-- | lib/public/Files/IRootFolder.php | 2 |
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 */ |