diff --git a/core/Entity/FileInformation.php b/core/Entity/FileInformation.php index a93f202..498ffd0 100644 --- a/core/Entity/FileInformation.php +++ b/core/Entity/FileInformation.php @@ -36,7 +36,7 @@ class FileInformation implements EntityInterface public function getAttributes() { - return json_decode($this->attributes, true); + return (array) json_decode($this->attributes, true); } public function setAttributes($attributes): self