diff options
author | Robin Appelman <robin@icewind.nl> | 2023-08-14 21:12:12 +0200 |
---|---|---|
committer | Robin Appelman <robin@icewind.nl> | 2023-09-04 18:42:49 +0200 |
commit | 9055fef5eff14b74c1ecf4399ed4031f01edc044 (patch) | |
tree | de903e91ccc6f22de0c9f4e27b8ab169238661c9 /apps/files_trashbin/lib | |
parent | e718cbc6617ad83eda9274c59bb66c3b8f147796 (diff) | |
download | nextcloud-server-9055fef5eff14b74c1ecf4399ed4031f01edc044.tar.gz nextcloud-server-9055fef5eff14b74c1ecf4399ed4031f01edc044.zip |
add IFileInfo::getParentId
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'apps/files_trashbin/lib')
-rw-r--r-- | apps/files_trashbin/lib/Trash/TrashItem.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/files_trashbin/lib/Trash/TrashItem.php b/apps/files_trashbin/lib/Trash/TrashItem.php index 29de0a2ed5a..3bfc905d3a1 100644 --- a/apps/files_trashbin/lib/Trash/TrashItem.php +++ b/apps/files_trashbin/lib/Trash/TrashItem.php @@ -186,4 +186,8 @@ class TrashItem implements ITrashItem { public function getUploadTime(): int { return $this->fileInfo->getUploadTime(); } + + public function getParentId(): int { + return $this->fileInfo->getParentId(); + } } |