Remove automatically set static DBO properties
authorMatthias Schmidt <gravatronics@live.com>
Thu, 4 Aug 2016 16:43:12 +0000 (18:43 +0200)
committerMatthias Schmidt <gravatronics@live.com>
Thu, 4 Aug 2016 16:43:12 +0000 (18:43 +0200)
files/lib/data/conversation/Conversation.class.php
files/lib/data/conversation/label/ConversationLabel.class.php
files/lib/data/conversation/message/ConversationMessage.class.php

index 29c366a8573af3d5f2551302d16bc83e2d6d4221..0ddb6aa7350c25d6b105f4db35467610e06d0d2f 100644 (file)
@@ -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
index e2ea6fb6d9023b97ac6aa37d26fe966f06396d9e..1e0487ebddcf586ab47a960f8ae9c2dbcf1b54be 100644 (file)
@@ -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[]
index d99327030e8251ec46d2143adf6d9640aeb1e833..00cdd580243281951f6c31d66296a39bb71c94f4 100644 (file)
@@ -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