Fix return type of the getRootFolder() method

This commit is contained in:
Joas Schilling 2015-04-28 09:36:29 +02:00
parent 6679ef287a
commit 7c65448377
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();