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:
authorJoas Schilling <coding@schilljs.com>2019-09-05 15:29:09 +0300
committerJoas Schilling <coding@schilljs.com>2019-09-05 15:29:09 +0300
commitd4fc586f1a796b8cb19cff543b668470556e44b2 (patch)
treeca88292e6d2b903e045f5d5758b61f975d103bb9 /lib/Notification
parent7168522ece988505d0ed40a89f9ae238b8bf4ff6 (diff)
Bye Spreed, hello Talk!
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/Notification')
-rw-r--r--lib/Notification/Listener.php4
-rw-r--r--lib/Notification/Notifier.php18
2 files changed, 11 insertions, 11 deletions
diff --git a/lib/Notification/Listener.php b/lib/Notification/Listener.php
index f98b3f8c8..bb55d5ccf 100644
--- a/lib/Notification/Listener.php
+++ b/lib/Notification/Listener.php
@@ -20,9 +20,9 @@ declare(strict_types=1);
*
*/
-namespace OCA\Spreed\Notification;
+namespace OCA\Talk\Notification;
-use OCA\Spreed\Room;
+use OCA\Talk\Room;
use OCP\AppFramework\Utility\ITimeFactory;
use OCP\Notification\IManager;
use OCP\ILogger;
diff --git a/lib/Notification/Notifier.php b/lib/Notification/Notifier.php
index db44a2256..1083e05e4 100644
--- a/lib/Notification/Notifier.php
+++ b/lib/Notification/Notifier.php
@@ -20,17 +20,17 @@ declare(strict_types=1);
*
*/
-namespace OCA\Spreed\Notification;
+namespace OCA\Talk\Notification;
-use OCA\Spreed\Chat\MessageParser;
-use OCA\Spreed\Config;
-use OCA\Spreed\Exceptions\ParticipantNotFoundException;
-use OCA\Spreed\Exceptions\RoomNotFoundException;
-use OCA\Spreed\GuestManager;
-use OCA\Spreed\Manager;
-use OCA\Spreed\Participant;
-use OCA\Spreed\Room;
+use OCA\Talk\Chat\MessageParser;
+use OCA\Talk\Config;
+use OCA\Talk\Exceptions\ParticipantNotFoundException;
+use OCA\Talk\Exceptions\RoomNotFoundException;
+use OCA\Talk\GuestManager;
+use OCA\Talk\Manager;
+use OCA\Talk\Participant;
+use OCA\Talk\Room;
use OCP\Comments\ICommentsManager;
use OCP\Comments\NotFoundException;
use OCP\IL10N;