diff options
author | Julius Härtl <jus@bitgrid.net> | 2022-02-18 10:44:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-18 10:44:50 +0100 |
commit | ee711ed66cdaed403e654dc78600477d1296e7f0 (patch) | |
tree | 0d0fcb01c7161889da3d40158c16d6c255c870f1 /lib/public | |
parent | d2518471727e42b320ec208df1a56fcc2639a9e3 (diff) | |
parent | 8af40542379df1338a07ec1628147bb79a92be4f (diff) | |
download | nextcloud-server-ee711ed66cdaed403e654dc78600477d1296e7f0.tar.gz nextcloud-server-ee711ed66cdaed403e654dc78600477d1296e7f0.zip |
Merge pull request #30367 from nextcloud/fix/minor-api-doc-fix
Fix some issues with the API documentation
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/Files/FileInfo.php | 4 | ||||
-rw-r--r-- | lib/public/Files/Node.php | 3 |
2 files changed, 5 insertions, 2 deletions
diff --git a/lib/public/Files/FileInfo.php b/lib/public/Files/FileInfo.php index 00b1e78fbac..92c191b63e0 100644 --- a/lib/public/Files/FileInfo.php +++ b/lib/public/Files/FileInfo.php @@ -28,6 +28,8 @@ */ namespace OCP\Files; +use OCP\Files\Storage\IStorage; + /** * Interface FileInfo * @@ -138,7 +140,7 @@ interface FileInfo { /** * Get the storage the file or folder is storage on * - * @return \OCP\Files\Storage + * @return IStorage * @since 7.0.0 */ public function getStorage(); diff --git a/lib/public/Files/Node.php b/lib/public/Files/Node.php index 1e5fc580db3..b892d8e0a73 100644 --- a/lib/public/Files/Node.php +++ b/lib/public/Files/Node.php @@ -31,6 +31,7 @@ namespace OCP\Files; use OCP\Lock\LockedException; +use OCP\Files\Storage\IStorage; /** * Interface Node @@ -87,7 +88,7 @@ interface Node extends FileInfo { /** * Get the storage backend the file or folder is stored on * - * @return Storage + * @return IStorage * @throws NotFoundException * @since 6.0.0 */ |