diff options
Diffstat (limited to 'lib/private/Accounts/Account.php')
-rw-r--r-- | lib/private/Accounts/Account.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/private/Accounts/Account.php b/lib/private/Accounts/Account.php index 1e4189f2b35..540d15cd4b9 100644 --- a/lib/private/Accounts/Account.php +++ b/lib/private/Accounts/Account.php @@ -104,7 +104,8 @@ class Account implements IAccount { return $result; } - public function jsonSerialize() { + /** @return IAccountPropertyCollection[]|IAccountProperty[] */ + public function jsonSerialize(): array { return $this->properties; } |