diff options
Diffstat (limited to 'lib/private/Accounts/AccountPropertyCollection.php')
-rw-r--r-- | lib/private/Accounts/AccountPropertyCollection.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/private/Accounts/AccountPropertyCollection.php b/lib/private/Accounts/AccountPropertyCollection.php index 8e74d45d52d..84e10e6a507 100644 --- a/lib/private/Accounts/AccountPropertyCollection.php +++ b/lib/private/Accounts/AccountPropertyCollection.php @@ -83,4 +83,8 @@ class AccountPropertyCollection implements IAccountPropertyCollection { public function jsonSerialize() { return [$this->collectionName => $this->properties]; } + + public function getName(): string { + return $this->collectionName; + } } |