summaryrefslogtreecommitdiffstats
path: root/lib/Db/EntityJSONSerializer.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Db/EntityJSONSerializer.php')
-rw-r--r--lib/Db/EntityJSONSerializer.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Db/EntityJSONSerializer.php b/lib/Db/EntityJSONSerializer.php
index 2646ed97a..3612d27f1 100644
--- a/lib/Db/EntityJSONSerializer.php
+++ b/lib/Db/EntityJSONSerializer.php
@@ -27,7 +27,7 @@ trait EntityJSONSerializer
{
$result = [];
foreach ($properties as $property) {
- $result[$property] = $this->$property;
+ $result[$property] = $this->$property; //@phpstan-ignore-line
}
return $result;
}