diff options
author | Joas Schilling <coding@schilljs.com> | 2024-02-14 20:48:27 +0100 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2024-02-14 20:50:08 +0100 |
commit | 42be7a5d74d1cd4d8edc0ba52854f1bb73cd67d0 (patch) | |
tree | 85ec146d450a0aceaafbc926f94b32dff442af7a /lib/public/Authentication | |
parent | 887c061fc8de23848095d71b567a8ad413c7f9b3 (diff) | |
download | nextcloud-server-42be7a5d74d1cd4d8edc0ba52854f1bb73cd67d0.tar.gz nextcloud-server-42be7a5d74d1cd4d8edc0ba52854f1bb73cd67d0.zip |
fix(OCP): Add since tag for all constants
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/public/Authentication')
-rw-r--r-- | lib/public/Authentication/TwoFactorAuth/IRegistry.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/public/Authentication/TwoFactorAuth/IRegistry.php b/lib/public/Authentication/TwoFactorAuth/IRegistry.php index 0f164902f67..19010e5e5bf 100644 --- a/lib/public/Authentication/TwoFactorAuth/IRegistry.php +++ b/lib/public/Authentication/TwoFactorAuth/IRegistry.php @@ -39,11 +39,13 @@ use OCP\IUser; */ interface IRegistry { /** + * @since 15.0.0 * @deprecated 22.0.0 */ public const EVENT_PROVIDER_ENABLED = self::class . '::enable'; /** + * @since 15.0.0 * @deprecated 22.0.0 */ public const EVENT_PROVIDER_DISABLED = self::class . '::disable'; |