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
|
* check if the directory should be ignored when scanning
|
||||||
* NOTE: the special directories . and .. would cause never ending recursion
|
* NOTE: the special directories . and .. would cause never ending recursion
|
||||||
*
|
*
|
||||||
* @param String $dir
|
* @param string $dir
|
||||||
* @return boolean
|
* @return boolean
|
||||||
*/
|
*/
|
||||||
static public function isIgnoredDir($dir) {
|
static public function isIgnoredDir($dir) {
|
||||||
|
|
|
@ -348,7 +348,7 @@ class Root extends Folder implements IRootFolder {
|
||||||
/**
|
/**
|
||||||
* Returns a view to user's files folder
|
* Returns a view to user's files folder
|
||||||
*
|
*
|
||||||
* @param String $userId user ID
|
* @param string $userId user ID
|
||||||
* @return \OCP\Files\Folder
|
* @return \OCP\Files\Folder
|
||||||
* @throws \OC\User\NoUserException
|
* @throws \OC\User\NoUserException
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -390,7 +390,7 @@ class OC_Util {
|
||||||
/**
|
/**
|
||||||
* copies the skeleton to the users /files
|
* copies the skeleton to the users /files
|
||||||
*
|
*
|
||||||
* @param String $userId
|
* @param string $userId
|
||||||
* @param \OCP\Files\Folder $userDirectory
|
* @param \OCP\Files\Folder $userDirectory
|
||||||
* @throws \OCP\Files\NotFoundException
|
* @throws \OCP\Files\NotFoundException
|
||||||
* @throws \OCP\Files\NotPermittedException
|
* @throws \OCP\Files\NotPermittedException
|
||||||
|
|
|
@ -37,7 +37,7 @@ interface IRootFolder extends Folder, Emitter {
|
||||||
/**
|
/**
|
||||||
* Returns a view to user's files folder
|
* Returns a view to user's files folder
|
||||||
*
|
*
|
||||||
* @param String $userId user ID
|
* @param string $userId user ID
|
||||||
* @return \OCP\Files\Folder
|
* @return \OCP\Files\Folder
|
||||||
* @since 8.2.0
|
* @since 8.2.0
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue