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
path: root/lib/Model
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/Model
parent7168522ece988505d0ed40a89f9ae238b8bf4ff6 (diff)
Bye Spreed, hello Talk!
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/Model')
-rw-r--r--lib/Model/Command.php2
-rw-r--r--lib/Model/CommandMapper.php2
-rw-r--r--lib/Model/Message.php6
3 files changed, 5 insertions, 5 deletions
diff --git a/lib/Model/Command.php b/lib/Model/Command.php
index c6a949b11..8734ea812 100644
--- a/lib/Model/Command.php
+++ b/lib/Model/Command.php
@@ -20,7 +20,7 @@ declare(strict_types=1);
*
*/
-namespace OCA\Spreed\Model;
+namespace OCA\Talk\Model;
use OCP\AppFramework\Db\Entity;
diff --git a/lib/Model/CommandMapper.php b/lib/Model/CommandMapper.php
index e3b842417..b10755259 100644
--- a/lib/Model/CommandMapper.php
+++ b/lib/Model/CommandMapper.php
@@ -20,7 +20,7 @@ declare(strict_types=1);
*
*/
-namespace OCA\Spreed\Model;
+namespace OCA\Talk\Model;
use OCP\AppFramework\Db\QBMapper;
use OCP\IDBConnection;
diff --git a/lib/Model/Message.php b/lib/Model/Message.php
index a7e1f3ea5..6643df106 100644
--- a/lib/Model/Message.php
+++ b/lib/Model/Message.php
@@ -20,11 +20,11 @@ declare(strict_types=1);
*
*/
-namespace OCA\Spreed\Model;
+namespace OCA\Talk\Model;
-use OCA\Spreed\Participant;
-use OCA\Spreed\Room;
+use OCA\Talk\Participant;
+use OCA\Talk\Room;
use OCP\Comments\IComment;
use OCP\IL10N;
use OCP\IUser;