From 2841b2fb5c66b7bdd8088776e286a31ea8b19a7a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maximilian=20B=C3=B6sing?= <2189546+boesing@users.noreply.github.com> Date: Sat, 15 Jun 2024 21:30:42 +0200 Subject: [PATCH] qa: enforce `non-empty-string` as array key for `MetadataCapableInterface#getMetadatas` return type MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Maximilian Bösing <2189546+boesing@users.noreply.github.com> --- src/Storage/MetadataCapableInterface.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Storage/MetadataCapableInterface.php b/src/Storage/MetadataCapableInterface.php index e053e9fe..7c08ac14 100644 --- a/src/Storage/MetadataCapableInterface.php +++ b/src/Storage/MetadataCapableInterface.php @@ -24,7 +24,7 @@ public function getMetadata(string $key): ?object; * Get multiple metadata * * @param non-empty-list $keys - * @return array Associative array of keys and metadata + * @return array Associative array of keys and metadata * @throws ExceptionInterface */ public function getMetadatas(array $keys): array;