diff options
author | Robin Appelman <robin@icewind.nl> | 2025-03-20 15:59:25 +0100 |
---|---|---|
committer | Robin Appelman <robin@icewind.nl> | 2025-03-31 14:30:40 +0200 |
commit | fcde776683ad5c844e82770e66ef814105d6a7c8 (patch) | |
tree | 6135c3d4cfd37a54dadc9aec4e2a68e212d259f5 /lib/public/Files | |
parent | c3bc362f487cbea1458206e2b285210b38c0ea1e (diff) | |
download | nextcloud-server-fcde776683ad5c844e82770e66ef814105d6a7c8.tar.gz nextcloud-server-fcde776683ad5c844e82770e66ef814105d6a7c8.zip |
feat: add command to list objects
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'lib/public/Files')
-rw-r--r-- | lib/public/Files/ObjectStore/IObjectStoreMetaData.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/public/Files/ObjectStore/IObjectStoreMetaData.php b/lib/public/Files/ObjectStore/IObjectStoreMetaData.php index 48e1290850c..8359e83f573 100644 --- a/lib/public/Files/ObjectStore/IObjectStoreMetaData.php +++ b/lib/public/Files/ObjectStore/IObjectStoreMetaData.php @@ -30,7 +30,9 @@ interface IObjectStoreMetaData { * If the object store implementation can do it efficiently, the metadata for each object is also included. * * @param string $prefix - * @return \Iterator<array{urn: string, meta: ?ObjectMetaData}> + * @return \Iterator<array{urn: string, metadata: ?ObjectMetaData}> + * + * @since 32.0.0 */ public function listObjects(string $prefix = ''): \Iterator; } |