aboutsummaryrefslogtreecommitdiffstats
path: root/apps/dav/lib/Upload/UploadFile.php
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2023-03-09 15:22:38 +0100
committerJulius Härtl <jus@bitgrid.net>2024-06-25 18:37:26 +0200
commitb3b567e78655dd37f7d5e91b7568a97ba1aa2fb3 (patch)
tree953269cf274aa5d3c96ede725fbfe4d9b81f485f /apps/dav/lib/Upload/UploadFile.php
parent61213253104cd5719c1ed9fa74935ea6be5b6719 (diff)
downloadnextcloud-server-bugfix/cleanup-s3-multipart.tar.gz
nextcloud-server-bugfix/cleanup-s3-multipart.zip
chore: Address review commentsbugfix/cleanup-s3-multipart
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'apps/dav/lib/Upload/UploadFile.php')
-rw-r--r--apps/dav/lib/Upload/UploadFile.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/dav/lib/Upload/UploadFile.php b/apps/dav/lib/Upload/UploadFile.php
index ae64760e0ce..26d8c4e321c 100644
--- a/apps/dav/lib/Upload/UploadFile.php
+++ b/apps/dav/lib/Upload/UploadFile.php
@@ -27,7 +27,7 @@ class UploadFile implements IFile {
return $this->file->get();
}
- public function getId() {
+ public function getId(): int {
return $this->file->getId();
}
@@ -71,7 +71,7 @@ class UploadFile implements IFile {
return $this->file;
}
- public function getNode() {
+ public function getNode(): \OCP\Files\File {
return $this->file->getNode();
}
}