Merge pull request #12466 from nextcloud/fix/sting-doctype-casing
Fix string doctype casing
This commit is contained in:
commit
3ab8d840c9
|
@ -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) {
|
||||
|
|
|
@ -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
|
||||
*/
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue