Skip to content
Snippets Groups Projects
Commit b7cf4d55 authored by Thomas Müller's avatar Thomas Müller
Browse files

let init() take an INode - fixes PHP message

parent 836b8091
No related branches found
No related tags found
No related merge requests found
...@@ -35,11 +35,11 @@ class ObjectTree extends \Sabre\DAV\ObjectTree { ...@@ -35,11 +35,11 @@ class ObjectTree extends \Sabre\DAV\ObjectTree {
} }
/** /**
* @param \Sabre\DAV\ICollection $rootNode * @param \Sabre\DAV\INode $rootNode
* @param \OC\Files\View $view * @param \OC\Files\View $view
* @param \OC\Files\Mount\Manager $mountManager * @param \OC\Files\Mount\Manager $mountManager
*/ */
public function init(\Sabre\DAV\ICollection $rootNode, \OC\Files\View $view, \OC\Files\Mount\Manager $mountManager) { public function init(\Sabre\DAV\INode $rootNode, \OC\Files\View $view, \OC\Files\Mount\Manager $mountManager) {
$this->rootNode = $rootNode; $this->rootNode = $rootNode;
$this->fileView = $view; $this->fileView = $view;
$this->mountManager = $mountManager; $this->mountManager = $mountManager;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment