From 95164c1f6d900f33cb8dcf833eb19e5d10fd5e7f Mon Sep 17 00:00:00 2001 From: Matthias Schmidt Date: Thu, 4 Aug 2016 18:43:12 +0200 Subject: [PATCH] Remove automatically set static DBO properties --- files/lib/data/conversation/Conversation.class.php | 10 ---------- .../conversation/label/ConversationLabel.class.php | 10 ---------- .../conversation/message/ConversationMessage.class.php | 10 ---------- 3 files changed, 30 deletions(-) diff --git a/files/lib/data/conversation/Conversation.class.php b/files/lib/data/conversation/Conversation.class.php index 29c366a..0ddb6aa 100644 --- a/files/lib/data/conversation/Conversation.class.php +++ b/files/lib/data/conversation/Conversation.class.php @@ -44,16 +44,6 @@ use wcf\util\ArrayUtil; * @property-read integer|null $lastVisitTime */ class Conversation extends DatabaseObject implements IRouteController, ITitledLinkObject { - /** - * @inheritDoc - */ - protected static $databaseTableName = 'conversation'; - - /** - * @inheritDoc - */ - protected static $databaseTableIndexName = 'conversationID'; - /** * default participation state * @var integer diff --git a/files/lib/data/conversation/label/ConversationLabel.class.php b/files/lib/data/conversation/label/ConversationLabel.class.php index e2ea6fb..1e0487e 100644 --- a/files/lib/data/conversation/label/ConversationLabel.class.php +++ b/files/lib/data/conversation/label/ConversationLabel.class.php @@ -17,16 +17,6 @@ use wcf\system\WCF; * @property-read string $cssClassName */ class ConversationLabel extends DatabaseObject { - /** - * @inheritDoc - */ - protected static $databaseTableName = 'conversation_label'; - - /** - * @inheritDoc - */ - protected static $databaseTableIndexName = 'labelID'; - /** * list of pre-defined css class names * @var string[] diff --git a/files/lib/data/conversation/message/ConversationMessage.class.php b/files/lib/data/conversation/message/ConversationMessage.class.php index d993270..00cdd58 100644 --- a/files/lib/data/conversation/message/ConversationMessage.class.php +++ b/files/lib/data/conversation/message/ConversationMessage.class.php @@ -35,16 +35,6 @@ use wcf\util\StringUtil; class ConversationMessage extends DatabaseObject implements IMessage { use TUserContent; - /** - * @inheritDoc - */ - protected static $databaseTableName = 'conversation_message'; - - /** - * @inheritDoc - */ - protected static $databaseTableIndexName = 'messageID'; - /** * conversation object * @var Conversation -- 2.20.1