aboutsummaryrefslogtreecommitdiffstats
path: root/lib/public/Group/Events/UserRemovedEvent.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/public/Group/Events/UserRemovedEvent.php')
-rw-r--r--lib/public/Group/Events/UserRemovedEvent.php49
1 files changed, 49 insertions, 0 deletions
diff --git a/lib/public/Group/Events/UserRemovedEvent.php b/lib/public/Group/Events/UserRemovedEvent.php
new file mode 100644
index 00000000000..c1d6bb3cda2
--- /dev/null
+++ b/lib/public/Group/Events/UserRemovedEvent.php
@@ -0,0 +1,49 @@
+<?php
+
+declare(strict_types=1);
+
+/**
+ * SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors
+ * SPDX-License-Identifier: AGPL-3.0-or-later
+ */
+namespace OCP\Group\Events;
+
+use OCP\EventDispatcher\Event;
+use OCP\IGroup;
+use OCP\IUser;
+
+/**
+ * @since 18.0.0
+ */
+class UserRemovedEvent extends Event {
+ /** @var IGroup */
+ private $group;
+
+ /*** @var IUser */
+ private $user;
+
+ /**
+ * @since 18.0.0
+ */
+ public function __construct(IGroup $group, IUser $user) {
+ parent::__construct();
+ $this->group = $group;
+ $this->user = $user;
+ }
+
+ /**
+ * @return IGroup
+ * @since 18.0.0
+ */
+ public function getGroup(): IGroup {
+ return $this->group;
+ }
+
+ /**
+ * @return IUser
+ * @since 18.0.0
+ */
+ public function getUser(): IUser {
+ return $this->user;
+ }
+}