mirror of
https://github.com/nextcloud/server.git
synced 2026-04-23 23:27:46 -04:00
Merge pull request #15903 from owncloud/issue-15899-fix-getfoortfolder-doc
Fix return type of the getRootFolder() method
This commit is contained in:
commit
9108c103b2
2 changed files with 2 additions and 2 deletions
|
|
@ -492,7 +492,7 @@ class Server extends SimpleContainer implements IServerContainer {
|
|||
/**
|
||||
* Returns the root folder of ownCloud's data directory
|
||||
*
|
||||
* @return \OCP\Files\Folder
|
||||
* @return \OCP\Files\IRootFolder
|
||||
*/
|
||||
public function getRootFolder() {
|
||||
return $this->query('RootFolder');
|
||||
|
|
|
|||
|
|
@ -87,7 +87,7 @@ interface IServerContainer {
|
|||
/**
|
||||
* Returns the root folder of ownCloud's data directory
|
||||
*
|
||||
* @return \OCP\Files\Folder
|
||||
* @return \OCP\Files\IRootFolder
|
||||
* @since 6.0.0
|
||||
*/
|
||||
public function getRootFolder();
|
||||
|
|
|
|||
Loading…
Reference in a new issue