diff options
author | Joas Schilling <coding@schilljs.com> | 2023-07-25 11:54:36 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2023-07-27 09:57:52 +0200 |
commit | dac31ad1010924bc2067fbbdaf5c856639c71091 (patch) | |
tree | 25cf9a88696d00a6e8e76386f77ba73bf4ff7e72 /lib/public | |
parent | 1b387bb341d2ecf15b7cd3c946ceb9a33a984af7 (diff) | |
download | nextcloud-server-dac31ad1010924bc2067fbbdaf5c856639c71091.tar.gz nextcloud-server-dac31ad1010924bc2067fbbdaf5c856639c71091.zip |
fix!: Remove legacy event dispatching Symfony's GenericEvent from 2FA Manager
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/Authentication/TwoFactorAuth/IProvider.php | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/lib/public/Authentication/TwoFactorAuth/IProvider.php b/lib/public/Authentication/TwoFactorAuth/IProvider.php index 09fa7a56f5c..7cb6c83bdf6 100644 --- a/lib/public/Authentication/TwoFactorAuth/IProvider.php +++ b/lib/public/Authentication/TwoFactorAuth/IProvider.php @@ -33,17 +33,6 @@ use OCP\Template; */ interface IProvider { /** - * @since 14.0.0 - * @deprecated 22.0.0 - */ - public const EVENT_SUCCESS = self::class . '::success'; - - /** - * @deprecated 22.0.0 - */ - public const EVENT_FAILED = self::class . '::failed'; - - /** * Get unique identifier of this 2FA provider * * @since 9.1.0 |