diff options
author | Robin Appelman <robin@icewind.nl> | 2021-03-26 21:29:24 +0100 |
---|---|---|
committer | Robin Appelman <robin@icewind.nl> | 2021-03-26 21:29:24 +0100 |
commit | c8736e7a23f213b2b5367c9ca7c31b2026847c08 (patch) | |
tree | bfd7274fcc785b7037e0729ca59a6b169ff28c6d /lib | |
parent | a75f0e62fa0b9e140ba0dd8ffb2e928a5d3007dd (diff) | |
download | nextcloud-server-c8736e7a23f213b2b5367c9ca7c31b2026847c08.tar.gz nextcloud-server-c8736e7a23f213b2b5367c9ca7c31b2026847c08.zip |
fix return value of Root::get
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/Files/Node/Root.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Files/Node/Root.php b/lib/private/Files/Node/Root.php index fba8a24b40f..8d8c91f66dc 100644 --- a/lib/private/Files/Node/Root.php +++ b/lib/private/Files/Node/Root.php @@ -192,7 +192,7 @@ class Root extends Folder implements IRootFolder { * @param string $path * @throws \OCP\Files\NotFoundException * @throws \OCP\Files\NotPermittedException - * @return string + * @return Node */ public function get($path) { $path = $this->normalizePath($path); |