diff options
Diffstat (limited to 'lib/private/files/node/node.php')
-rw-r--r-- | lib/private/files/node/node.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/private/files/node/node.php b/lib/private/files/node/node.php index b9bd785de5c..943d12122e6 100644 --- a/lib/private/files/node/node.php +++ b/lib/private/files/node/node.php @@ -56,11 +56,13 @@ class Node implements \OCP\Files\Node { * @param \OC\Files\View $view * @param \OC\Files\Node\Root $root * @param string $path + * @param FileInfo $fileInfo */ - public function __construct($root, $view, $path) { + public function __construct($root, $view, $path, $fileInfo = null) { $this->view = $view; $this->root = $root; $this->path = $path; + $this->fileInfo = $fileInfo; } /** |