diff options
Diffstat (limited to 'lib/private/Accounts/AccountManager.php')
-rw-r--r-- | lib/private/Accounts/AccountManager.php | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/lib/private/Accounts/AccountManager.php b/lib/private/Accounts/AccountManager.php index 3241ad27c6a..3b3117d8be1 100644 --- a/lib/private/Accounts/AccountManager.php +++ b/lib/private/Accounts/AccountManager.php @@ -58,6 +58,7 @@ use function json_last_error; * @package OC\Accounts */ class AccountManager implements IAccountManager { + use TAccountsHelper; /** @var IDBConnection database connection */ private $connection; @@ -607,12 +608,4 @@ class AccountManager implements IAccountManager { $this->updateUser($account->getUser(), $data, true); } - - protected function isCollection(string $propertyName): bool { - return in_array($propertyName, - [ - IAccountManager::COLLECTION_EMAIL, - ] - ); - } } |