Fix string doc type casing

Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
This commit is contained in:
Christoph Wurst 2018-11-15 11:51:28 +01:00
parent 159d75945a
commit 1b85ef4bf2
No known key found for this signature in database
GPG Key ID: CC42AC2A7F0E56D8
4 changed files with 4 additions and 4 deletions

View File

@ -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) {

View File

@ -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
*/

View File

@ -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

View File

@ -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
*/