From: Matthias Schmidt Date: Thu, 4 Aug 2016 16:43:12 +0000 (+0200) Subject: Remove automatically set static DBO properties X-Git-Tag: 3.0.0_Beta_1~34 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=95164c1f6d900f33cb8dcf833eb19e5d10fd5e7f;p=GitHub%2FWoltLab%2Fcom.woltlab.wcf.conversation.git Remove automatically set static DBO properties --- 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