Fix return type of the getRootFolder() method
This commit is contained in:
parent
6679ef287a
commit
7c65448377
|
@ -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 New Issue