Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/GuestManager.php')
-rw-r--r--lib/GuestManager.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/GuestManager.php b/lib/GuestManager.php
index e26ddaee8..2408ae27d 100644
--- a/lib/GuestManager.php
+++ b/lib/GuestManager.php
@@ -1,4 +1,5 @@
<?php
+
declare(strict_types=1);
/**
* @copyright Copyright (c) 2018 Joas Schilling <coding@schilljs.com>
@@ -22,7 +23,6 @@ declare(strict_types=1);
namespace OCA\Talk;
-
use OCA\Talk\Events\AddEmailEvent;
use OCA\Talk\Events\ModifyParticipantEvent;
use OCA\Talk\Exceptions\ParticipantNotFoundException;
@@ -38,7 +38,6 @@ use OCP\Mail\IMailer;
use OCP\Util;
class GuestManager {
-
public const EVENT_BEFORE_EMAIL_INVITE = self::class . '::preInviteByEmail';
public const EVENT_AFTER_EMAIL_INVITE = self::class . '::postInviteByEmail';
public const EVENT_AFTER_NAME_UPDATE = self::class . '::updateName';