summaryrefslogtreecommitdiffstats
path: root/lib/public/Authentication/TwoFactorAuth/RegistryEvent.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/public/Authentication/TwoFactorAuth/RegistryEvent.php')
-rw-r--r--lib/public/Authentication/TwoFactorAuth/RegistryEvent.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/public/Authentication/TwoFactorAuth/RegistryEvent.php b/lib/public/Authentication/TwoFactorAuth/RegistryEvent.php
index 9a005c9cd5d..eb6eb5ca9af 100644
--- a/lib/public/Authentication/TwoFactorAuth/RegistryEvent.php
+++ b/lib/public/Authentication/TwoFactorAuth/RegistryEvent.php
@@ -24,8 +24,8 @@ declare(strict_types=1);
namespace OCP\Authentication\TwoFactorAuth;
+use OCP\EventDispatcher\Event;
use OCP\IUser;
-use Symfony\Component\EventDispatcher\Event;
/**
* @since 15.0.0
@@ -42,6 +42,7 @@ class RegistryEvent extends Event {
* @since 15.0.0
*/
public function __construct(IProvider $provider, IUser $user) {
+ parent::__construct();
$this->provider = $provider;
$this->user = $user;
}