diff options
author | provokateurin <kate@provokateurin.de> | 2024-05-11 09:22:19 +0200 |
---|---|---|
committer | provokateurin <kate@provokateurin.de> | 2024-05-11 09:22:19 +0200 |
commit | aff7798fc1d22302c1ab920c81b4f4b8613f3289 (patch) | |
tree | 477c262a4f0664c1cff5074c7b3edfd623802efc /lib/private/Accounts | |
parent | 4dc73b3354946e065ea72b8d2554038d3fea699d (diff) | |
download | nextcloud-server-aff7798fc1d22302c1ab920c81b4f4b8613f3289.tar.gz nextcloud-server-aff7798fc1d22302c1ab920c81b4f4b8613f3289.zip |
refactor(provisioning_api): Add types for user details scopes
Signed-off-by: provokateurin <kate@provokateurin.de>
Diffstat (limited to 'lib/private/Accounts')
-rw-r--r-- | lib/private/Accounts/AccountProperty.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/private/Accounts/AccountProperty.php b/lib/private/Accounts/AccountProperty.php index 207dc1d139d..456d04f356f 100644 --- a/lib/private/Accounts/AccountProperty.php +++ b/lib/private/Accounts/AccountProperty.php @@ -32,6 +32,9 @@ use OCP\Accounts\IAccountManager; use OCP\Accounts\IAccountProperty; class AccountProperty implements IAccountProperty { + /** + * @var IAccountManager::SCOPE_* + */ private string $scope; private string $locallyVerified = IAccountManager::NOT_VERIFIED; |