diff options
author | Louis <6653109+artonge@users.noreply.github.com> | 2022-10-26 14:25:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-26 14:25:09 +0200 |
commit | 1e450407f6106c3690f1b25cfdcf8ce1442d35e5 (patch) | |
tree | a8151cdf8196ca957c414ea7487950d5bd8b57e2 | |
parent | 5198fa49f7902c1b5212b485d6fb0411397b5c32 (diff) | |
parent | 38f5006c3efb49c77d79c557bece13af2901d074 (diff) | |
download | nextcloud-server-1e450407f6106c3690f1b25cfdcf8ce1442d35e5.tar.gz nextcloud-server-1e450407f6106c3690f1b25cfdcf8ce1442d35e5.zip |
Merge pull request #34809 from nextcloud/artonge/fix/getMetadata_return_type
Fix getMetadata return type
-rw-r--r-- | lib/private/Metadata/FileMetadata.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Metadata/FileMetadata.php b/lib/private/Metadata/FileMetadata.php index 7d1db21cf39..9ad0f9d35c6 100644 --- a/lib/private/Metadata/FileMetadata.php +++ b/lib/private/Metadata/FileMetadata.php @@ -28,7 +28,7 @@ use OCP\DB\Types; /** * @method string getGroupName() * @method void setGroupName(string $groupName) - * @method string getMetadata() + * @method array getMetadata() * @method void setMetadata(array $metadata) * @see \OC\Core\Migrations\Version240000Date20220404230027 */ |