Merge pull request #15903 from owncloud/issue-15899-fix-getfoortfolder-doc

Fix return type of the getRootFolder() method
This commit is contained in:
Thomas Müller 2015-04-28 10:04:15 +02:00
commit 9108c103b2
2 changed files with 2 additions and 2 deletions

View File

@ -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');

View File

@ -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();