diff options
author | Morris Jobke <hey@morrisjobke.de> | 2021-03-27 22:26:32 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-27 22:26:32 +0100 |
commit | 83c7b54ba69971128a72813a9d870bfe8e25de09 (patch) | |
tree | 08bf23c8d1d44fede0c8459e4117e7af069988e3 /lib | |
parent | aec9c8437a3de5d69451ae303ac5334b412f76d8 (diff) | |
parent | c8736e7a23f213b2b5367c9ca7c31b2026847c08 (diff) | |
download | nextcloud-server-83c7b54ba69971128a72813a9d870bfe8e25de09.tar.gz nextcloud-server-83c7b54ba69971128a72813a9d870bfe8e25de09.zip |
Merge pull request #26327 from nextcloud/fix-get-return
fix return value of Root::get
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); |