Replace @see tags with @inheritDoc tags
authorMatthias Schmidt <gravatronics@live.com>
Sat, 21 May 2016 09:13:03 +0000 (11:13 +0200)
committerMatthias Schmidt <gravatronics@live.com>
Sat, 21 May 2016 09:13:03 +0000 (11:13 +0200)
28 files changed:
files/lib/data/conversation/ConversationParticipantList.class.php
files/lib/data/conversation/FeedConversation.class.php
files/lib/data/conversation/label/ConversationLabelAction.class.php
files/lib/data/conversation/message/ConversationMessageAction.class.php
files/lib/data/conversation/message/SearchResultConversationMessage.class.php
files/lib/data/conversation/message/SimplifiedViewableConversationMessageList.class.php
files/lib/form/ConversationAddForm.class.php
files/lib/form/ConversationMessageAddForm.class.php
files/lib/form/ConversationMessageEditForm.class.php
files/lib/page/ConversationFeedPage.class.php
files/lib/system/attachment/ConversationMessageAttachmentObjectType.class.php
files/lib/system/clipboard/action/ConversationClipboardAction.class.php
files/lib/system/importer/ConversationAttachmentImporter.class.php
files/lib/system/importer/ConversationImporter.class.php
files/lib/system/importer/ConversationLabelImporter.class.php
files/lib/system/importer/ConversationMessageImporter.class.php
files/lib/system/importer/ConversationUserImporter.class.php
files/lib/system/message/quote/ConversationMessageQuoteHandler.class.php
files/lib/system/moderation/queue/report/ConversationMessageModerationQueueReportHandler.class.php
files/lib/system/search/ConversationMessageSearch.class.php
files/lib/system/stat/ConversationMessageStatDailyHandler.class.php
files/lib/system/stat/ConversationStatDailyHandler.class.php
files/lib/system/user/notification/event/ConversationMessageUserNotificationEvent.class.php
files/lib/system/user/notification/event/ConversationUserNotificationEvent.class.php
files/lib/system/user/notification/object/type/ConversationMessageNotificationObjectType.class.php
files/lib/system/user/notification/object/type/ConversationNotificationObjectType.class.php
files/lib/system/worker/ConversationMessageRebuildDataWorker.class.php
files/lib/system/worker/ConversationRebuildDataWorker.class.php

index 5095c10314951498b2d0cd0e9b447c16634b337d..005dfdea5bf80febf088e277867cc9514ffa9fc2 100644 (file)
@@ -22,7 +22,7 @@ class ConversationParticipantList extends UserProfileList {
        public $conversationID = 0;
        
        /**
-        * @see \wcf\data\DatabaseObjectList::$sqlLimit
+        * @inheritDoc
         */
        public $sqlLimit = 0;
        
@@ -53,7 +53,7 @@ class ConversationParticipantList extends UserProfileList {
        }
        
        /**
-        * @see \wcf\data\DatabaseObjectList::countObjects()
+        * @inheritDoc
         */
        public function countObjects() {
                $sql = "SELECT  COUNT(*) AS count
@@ -67,7 +67,7 @@ class ConversationParticipantList extends UserProfileList {
        }
        
        /**
-        * @see \wcf\data\DatabaseObjectList::readObjectIDs()
+        * @inheritDoc
         */
        public function readObjectIDs() {
                $this->objectIDs = [];
@@ -82,7 +82,7 @@ class ConversationParticipantList extends UserProfileList {
        }
        
        /**
-        * @see \wcf\data\user\UserProfileList::readObjects()
+        * @inheritDoc
         */
        public function readObjects() {
                parent::readObjects();
index 0303e026886a42f01ba8618555b0744733120d32..cdccbfc57434d95a191134aa967cb47c68258fb9 100644 (file)
@@ -16,12 +16,12 @@ use wcf\system\request\LinkHandler;
  */
 class FeedConversation extends DatabaseObjectDecorator implements IFeedEntry {
        /**
-        * @see \wcf\data\DatabaseObjectDecorator::$baseClass
+        * @inheritDoc
         */
        protected static $baseClass = 'wcf\data\conversation\Conversation';
        
        /**
-        * @see \wcf\data\ILinkableObject::getLink()
+        * @inheritDoc
         */
        public function getLink() {
                return LinkHandler::getInstance()->getLink('Conversation', [
@@ -32,77 +32,77 @@ class FeedConversation extends DatabaseObjectDecorator implements IFeedEntry {
        }
        
        /**
-        * @see \wcf\data\ITitledObject::getTitle()
+        * @inheritDoc
         */
        public function getTitle() {
                return $this->getDecoratedObject()->getTitle();
        }
        
        /**
-        * @see \wcf\data\IMessage::getFormattedMessage()
+        * @inheritDoc
         */
        public function getFormattedMessage() {
                return '';
        }
        
        /**
-        * @see \wcf\data\IMessage::getMessage()
+        * @inheritDoc
         */
        public function getMessage() {
                return '';
        }
        
        /**
-        * @see \wcf\data\IMessage::getExcerpt()
+        * @inheritDoc
         */
        public function getExcerpt($maxLength = 255) {
                return '';
        }
        
        /**
-        * @see \wcf\data\IMessage::getUserID()
+        * @inheritDoc
         */
        public function getUserID() {
                return $this->getDecoratedObject()->lastPosterID;
        }
        
        /**
-        * @see \wcf\data\IMessage::getUsername()
+        * @inheritDoc
         */
        public function getUsername() {
                return $this->getDecoratedObject()->lastPoster;
        }
        
        /**
-        * @see \wcf\data\IMessage::getTime()
+        * @inheritDoc
         */
        public function getTime() {
                return $this->getDecoratedObject()->lastPostTime;
        }
        
        /**
-        * @see \wcf\data\IMessage::__toString()
+        * @inheritDoc
         */
        public function __toString() {
                return $this->getDecoratedObject()->__toString();
        }
        
        /**
-        * @see \wcf\data\IFeedEntry::getComments()
+        * @inheritDoc
         */
        public function getComments() {
                return $this->replies;
        }
        
        /**
-        * @see \wcf\data\IFeedEntry::getCategories()
+        * @inheritDoc
         */
        public function getCategories() {
                return [];
        }
        
        /**
-        * @see \wcf\data\IMessage::isVisible()
+        * @inheritDoc
         */
        public function isVisible() {
                return $this->canRead();
index fdb905c589084d53cd50ccfdf47efd60a62ee325..d3abaf33672f75aa0c49d957d1b37d35f0bc7467 100644 (file)
@@ -23,17 +23,17 @@ use wcf\util\StringUtil;
  */
 class ConversationLabelAction extends AbstractDatabaseObjectAction {
        /**
-        * @see \wcf\data\AbstractDatabaseObjectAction::$className
+        * @inheritDoc
         */
        protected $className = 'wcf\data\conversation\label\ConversationLabelEditor';
        
        /**
-        * @see \wcf\data\AbstractDatabaseObjectAction::$permissionsDelete
+        * @inheritDoc
         */
        protected $permissionsDelete = ['user.conversation.canUseConversation'];
        
        /**
-        * @see \wcf\data\AbstractDatabaseObjectAction::$permissionsUpdate
+        * @inheritDoc
         */
        protected $permissionsUpdate = ['user.conversation.canUseConversation'];
        
@@ -50,7 +50,7 @@ class ConversationLabelAction extends AbstractDatabaseObjectAction {
        public $labelList = null;
        
        /**
-        * @see \wcf\data\AbstractDatabaseObjectAction::validateUpdate()
+        * @inheritDoc
         */
        public function validateUpdate() {
                parent::validateUpdate();
@@ -66,7 +66,7 @@ class ConversationLabelAction extends AbstractDatabaseObjectAction {
        }
        
        /**
-        * @see \wcf\data\AbstractDatabaseObjectAction::validateDelete()
+        * @inheritDoc
         */
        public function validateDelete() {
                parent::validateDelete();
index 8a183d8a03195d5494246f82645e4fdb06f46c7a..6e8b229836eee9e791af4b39382ae4827844d474 100644 (file)
@@ -41,7 +41,7 @@ use wcf\util\StringUtil;
  */
 class ConversationMessageAction extends AbstractDatabaseObjectAction implements IAttachmentMessageQuickReplyAction, IMessageInlineEditorAction, IMessageQuoteAction {
        /**
-        * @see \wcf\data\AbstractDatabaseObjectAction::$className
+        * @inheritDoc
         */
        protected $className = 'wcf\data\conversation\message\ConversationMessageEditor';
        
@@ -58,7 +58,7 @@ class ConversationMessageAction extends AbstractDatabaseObjectAction implements
        public $message = null;
        
        /**
-        * @see \wcf\data\AbstractDatabaseObjectAction::create()
+        * @inheritDoc
         */
        public function create() {
                // count attachments
@@ -155,7 +155,7 @@ class ConversationMessageAction extends AbstractDatabaseObjectAction implements
        }
        
        /**
-        * @see \wcf\data\AbstractDatabaseObjectAction::update()
+        * @inheritDoc
         */
        public function update() {
                // count attachments
@@ -181,7 +181,7 @@ class ConversationMessageAction extends AbstractDatabaseObjectAction implements
        }
        
        /**
-        * @see \wcf\data\AbstractDatabaseObjectAction::delete()
+        * @inheritDoc
         */
        public function delete() {
                $count = parent::delete();
@@ -226,7 +226,7 @@ class ConversationMessageAction extends AbstractDatabaseObjectAction implements
        }
        
        /**
-        * @see \wcf\data\IMessageQuickReply::validateQuickReply()
+        * @inheritDoc
         */
        public function validateQuickReply() {
                QuickReplyManager::getInstance()->setAllowedBBCodes(explode(',', WCF::getSession()->getPermission('user.message.allowedBBCodes')));
@@ -234,7 +234,7 @@ class ConversationMessageAction extends AbstractDatabaseObjectAction implements
        }
        
        /**
-        * @see \wcf\data\IMessageQuickReply::quickReply()
+        * @inheritDoc
         */
        public function quickReply() {
                return QuickReplyManager::getInstance()->createMessage(
@@ -247,7 +247,7 @@ class ConversationMessageAction extends AbstractDatabaseObjectAction implements
        }
        
        /**
-        * @see \wcf\data\IExtendedMessageQuickReplyAction::validateJumpToExtended()
+        * @inheritDoc
         */
        public function validateJumpToExtended() {
                $this->readInteger('containerID');
@@ -276,7 +276,7 @@ class ConversationMessageAction extends AbstractDatabaseObjectAction implements
        }
        
        /**
-        * @see \wcf\data\IExtendedMessageQuickReplyAction::jumpToExtended()
+        * @inheritDoc
         */
        public function jumpToExtended() {
                // quick reply
@@ -301,7 +301,7 @@ class ConversationMessageAction extends AbstractDatabaseObjectAction implements
        }
        
        /**
-        * @see \wcf\data\IMessageInlineEditorAction::validateBeginEdit()
+        * @inheritDoc
         */
        public function validateBeginEdit() {
                $this->readInteger('containerID');
@@ -327,7 +327,7 @@ class ConversationMessageAction extends AbstractDatabaseObjectAction implements
        }
        
        /**
-        * @see \wcf\data\IMessageInlineEditorAction::beginEdit()
+        * @inheritDoc
         */
        public function beginEdit() {
                BBCodeHandler::getInstance()->setAllowedBBCodes(explode(',', WCF::getSession()->getPermission('user.message.allowedBBCodes')));
@@ -361,7 +361,7 @@ class ConversationMessageAction extends AbstractDatabaseObjectAction implements
        }
        
        /**
-        * @see \wcf\data\IMessageInlineEditorAction::validateSave()
+        * @inheritDoc
         */
        public function validateSave() {
                $this->readString('message', true, 'data');
@@ -375,7 +375,7 @@ class ConversationMessageAction extends AbstractDatabaseObjectAction implements
        }
        
        /**
-        * @see \wcf\data\IMessageInlineEditorAction::save()
+        * @inheritDoc
         */
        public function save() {
                $data = [
@@ -433,7 +433,7 @@ class ConversationMessageAction extends AbstractDatabaseObjectAction implements
        }
        
        /**
-        * @see \wcf\data\IMessageQuickReply::validateContainer()
+        * @inheritDoc
         */
        public function validateContainer(DatabaseObject $conversation) {
                if (!$conversation->conversationID) {
@@ -449,7 +449,7 @@ class ConversationMessageAction extends AbstractDatabaseObjectAction implements
        }
        
        /**
-        * @see \wcf\data\IMessageQuickReplyAction::validateMessage()
+        * @inheritDoc
         */
        public function validateMessage(DatabaseObject $container, $message) {
                if (mb_strlen($message) > WCF::getSession()->getPermission('user.conversation.maxLength')) {
@@ -472,7 +472,7 @@ class ConversationMessageAction extends AbstractDatabaseObjectAction implements
        }
        
        /**
-        * @see \wcf\data\IMessageQuickReplyAction::getMessageList()
+        * @inheritDoc
         */
        public function getMessageList(DatabaseObject $conversation, $lastMessageTime) {
                $messageList = new ViewableConversationMessageList();
@@ -486,7 +486,7 @@ class ConversationMessageAction extends AbstractDatabaseObjectAction implements
        }
        
        /**
-        * @see \wcf\data\IMessageQuickReply::getPageNo()
+        * @inheritDoc
         */
        public function getPageNo(DatabaseObject $conversation) {
                $sql = "SELECT  COUNT(*) AS count
@@ -500,7 +500,7 @@ class ConversationMessageAction extends AbstractDatabaseObjectAction implements
        }
        
        /**
-        * @see \wcf\data\IMessageQuickReply::getRedirectUrl()
+        * @inheritDoc
         */
        public function getRedirectUrl(DatabaseObject $conversation, DatabaseObject $message) {
                return LinkHandler::getInstance()->getLink('Conversation', [
@@ -510,7 +510,7 @@ class ConversationMessageAction extends AbstractDatabaseObjectAction implements
        }
        
        /**
-        * @see \wcf\data\IMessageQuoteAction::validateSaveFullQuote()
+        * @inheritDoc
         */
        public function validateSaveFullQuote() {
                $this->message = $this->getSingleObject();
@@ -521,7 +521,7 @@ class ConversationMessageAction extends AbstractDatabaseObjectAction implements
        }
        
        /**
-        * @see \wcf\data\IMessageQuoteAction::saveFullQuote()
+        * @inheritDoc
         */
        public function saveFullQuote() {
                $quoteID = MessageQuoteManager::getInstance()->addQuote(
@@ -550,7 +550,7 @@ class ConversationMessageAction extends AbstractDatabaseObjectAction implements
        }
        
        /**
-        * @see \wcf\data\IMessageQuoteAction::validateSaveQuote()
+        * @inheritDoc
         */
        public function validateSaveQuote() {
                $this->readString('message');
@@ -563,7 +563,7 @@ class ConversationMessageAction extends AbstractDatabaseObjectAction implements
        }
        
        /**
-        * @see \wcf\data\IMessageQuoteAction::saveQuote()
+        * @inheritDoc
         */
        public function saveQuote() {
                $quoteID = MessageQuoteManager::getInstance()->addQuote('com.woltlab.wcf.conversation.message', $this->message->conversationID, $this->message->messageID, $this->parameters['message'], false);
@@ -581,7 +581,7 @@ class ConversationMessageAction extends AbstractDatabaseObjectAction implements
        }
        
        /**
-        * @see \wcf\data\IMessageQuoteAction::validateGetRenderedQuotes()
+        * @inheritDoc
         */
        public function validateGetRenderedQuotes() {
                $this->readInteger('parentObjectID');
@@ -593,7 +593,7 @@ class ConversationMessageAction extends AbstractDatabaseObjectAction implements
        }
        
        /**
-        * @see \wcf\data\IMessageQuoteAction::getRenderedQuotes()
+        * @inheritDoc
         */
        public function getRenderedQuotes() {
                $quotes = MessageQuoteManager::getInstance()->getQuotesByParentObjectID('com.woltlab.wcf.conversation.message', $this->conversation->conversationID);
@@ -604,7 +604,7 @@ class ConversationMessageAction extends AbstractDatabaseObjectAction implements
        }
        
        /**
-        * @see \wcf\data\IAttachmentMessageQuickReplyAction::getAttachmentHandler()
+        * @inheritDoc
         */
        public function getAttachmentHandler(DatabaseObject $conversation) {
                return new AttachmentHandler('com.woltlab.wcf.conversation.message', 0, $this->parameters['tmpHash']);
index d066841bb4b2cbdbc4a5c71b1bd63d7cb31de63f..d3e658c45f2d094a9df14c5db5033fa773b9c0fd 100644 (file)
@@ -39,21 +39,21 @@ class SearchResultConversationMessage extends ViewableConversationMessage implem
        }
        
        /**
-        * @see \wcf\data\conversation\message\ConversationMessage::getFormattedMessage()
+        * @inheritDoc
         */
        public function getFormattedMessage() {
                return SearchResultTextParser::getInstance()->parse($this->getDecoratedObject()->getSimplifiedFormattedMessage());
        }
        
        /**
-        * @see \wcf\data\search\ISearchResultObject::getSubject()
+        * @inheritDoc
         */
        public function getSubject() {
                return $this->subject;
        }
        
        /**
-        * @see \wcf\data\search\ISearchResultObject::getLink()
+        * @inheritDoc
         */
        public function getLink($query = '') {
                if ($query) {
@@ -68,28 +68,28 @@ class SearchResultConversationMessage extends ViewableConversationMessage implem
        }
        
        /**
-        * @see \wcf\data\search\ISearchResultObject::getTime()
+        * @inheritDoc
         */
        public function getTime() {
                return $this->time;
        }
        
        /**
-        * @see \wcf\data\search\ISearchResultObject::getObjectTypeName()
+        * @inheritDoc
         */
        public function getObjectTypeName() {
                return 'com.woltlab.wcf.conversation.message';
        }
        
        /**
-        * @see \wcf\data\search\ISearchResultObject::getContainerTitle()
+        * @inheritDoc
         */
        public function getContainerTitle() {
                return '';
        }
        
        /**
-        * @see \wcf\data\search\ISearchResultObject::getContainerLink()
+        * @inheritDoc
         */
        public function getContainerLink() {
                return '';
index 7861076144520c3c2f750664b55c93df8bfb1df1..ab52590e74867c56deb3c9ae75d687c02c88ca90 100644 (file)
@@ -14,12 +14,12 @@ namespace wcf\data\conversation\message;
  */
 class SimplifiedViewableConversationMessageList extends ViewableConversationMessageList {
        /**
-        * @see \wcf\data\conversation\message\ViewableConversationMessageList::$attachmentLoading
+        * @inheritDoc
         */
        protected $attachmentLoading = false;
        
        /**
-        * @see \wcf\data\conversation\message\ViewableConversationMessageList::$embeddedObjectLoading
+        * @inheritDoc
         */
        protected $embeddedObjectLoading = false;
 }
index b9d191cdf43560a41ab269dba71404d973d78601..7a5e40caccaf091fde4db80740be3599f9775ce3 100644 (file)
@@ -26,27 +26,27 @@ use wcf\util\StringUtil;
  */
 class ConversationAddForm extends MessageForm {
        /**
-        * @see \wcf\page\AbstractPage::$enableTracking
+        * @inheritDoc
         */
        public $enableTracking = true;
        
        /**
-        * @see \wcf\form\MessageForm::$attachmentObjectType
+        * @inheritDoc
         */
        public $attachmentObjectType = 'com.woltlab.wcf.conversation.message';
        
        /**
-        * @see \wcf\page\AbstractPage::$loginRequired
+        * @inheritDoc
         */
        public $loginRequired = true;
        
        /**
-        * @see \wcf\page\AbstractPage::$neededModules
+        * @inheritDoc
         */
        public $neededModules = ['MODULE_CONVERSATION'];
        
        /**
-        * @see \wcf\page\AbstractPage::$neededPermissions
+        * @inheritDoc
         */
        public $neededPermissions = ['user.conversation.canUseConversation'];
        
@@ -87,7 +87,7 @@ class ConversationAddForm extends MessageForm {
        public $invisibleParticipantIDs = [];
        
        /**
-        * @see \wcf\page\IPage::readParameters()
+        * @inheritDoc
         */
        public function readParameters() {
                parent::readParameters();
@@ -125,7 +125,7 @@ class ConversationAddForm extends MessageForm {
        }
        
        /**
-        * @see \wcf\form\IForm::readFormParameters()
+        * @inheritDoc
         */
        public function readFormParameters() {
                parent::readFormParameters();
@@ -140,7 +140,7 @@ class ConversationAddForm extends MessageForm {
        }
        
        /**
-        * @see \wcf\form\IForm::validate()
+        * @inheritDoc
         */
        public function validate() {
                if (empty($this->participants) && empty($this->invisibleParticipants) && !$this->draft) {
@@ -177,7 +177,7 @@ class ConversationAddForm extends MessageForm {
        }
        
        /**
-        * @see \wcf\form\IForm::save()
+        * @inheritDoc
         */
        public function save() {
                parent::save();
@@ -229,7 +229,7 @@ class ConversationAddForm extends MessageForm {
        }
        
        /**
-        * @see \wcf\page\IPage::readData()
+        * @inheritDoc
         */
        public function readData() {
                parent::readData();
@@ -239,7 +239,7 @@ class ConversationAddForm extends MessageForm {
        }
        
        /**
-        * @see \wcf\page\IPage::assignVariables()
+        * @inheritDoc
         */
        public function assignVariables() {
                parent::assignVariables();
index f5664fdacd88394bdd4f7fc886cb9612146487bb..db270c70b1d534e606b94c38d77e618f225613c1 100644 (file)
@@ -25,27 +25,27 @@ use wcf\util\HeaderUtil;
  */
 class ConversationMessageAddForm extends MessageForm {
        /**
-        * @see \wcf\page\AbstractPage::$enableTracking
+        * @inheritDoc
         */
        public $enableTracking = true;
        
        /**
-        * @see \wcf\form\MessageForm::$attachmentObjectType
+        * @inheritDoc
         */
        public $attachmentObjectType = 'com.woltlab.wcf.conversation.message';
        
        /**
-        * @see \wcf\page\AbstractPage::$loginRequired
+        * @inheritDoc
         */
        public $loginRequired = true;
        
        /**
-        * @see \wcf\page\AbstractPage::$neededModules
+        * @inheritDoc
         */
        public $neededModules = ['MODULE_CONVERSATION'];
        
        /**
-        * @see \wcf\page\AbstractPage::$neededPermissions
+        * @inheritDoc
         */
        public $neededPermissions = ['user.conversation.canUseConversation'];
        
@@ -68,7 +68,7 @@ class ConversationMessageAddForm extends MessageForm {
        public $messageList = null;
        
        /**
-        * @see \wcf\form\IPage::readParameters()
+        * @inheritDoc
         */
        public function readParameters() {
                parent::readParameters();
@@ -87,7 +87,7 @@ class ConversationMessageAddForm extends MessageForm {
        }
        
        /**
-        * @see \wcf\form\IForm::readFormParameters()
+        * @inheritDoc
         */
        public function readFormParameters() {
                parent::readFormParameters();
@@ -97,12 +97,12 @@ class ConversationMessageAddForm extends MessageForm {
        }
        
        /**
-        * @see \wcf\form\MessageForm::validateSubject()
+        * @inheritDoc
         */
        protected function validateSubject() {}
        
        /**
-        * @see \wcf\page\IPage::readData()
+        * @inheritDoc
         */
        public function readData() {
                parent::readData();
@@ -154,7 +154,7 @@ class ConversationMessageAddForm extends MessageForm {
        }
        
        /**
-        * @see \wcf\form\IForm::save()
+        * @inheritDoc
         */
        public function save() {
                parent::save();
@@ -193,7 +193,7 @@ class ConversationMessageAddForm extends MessageForm {
        }
        
        /**
-        * @see \wcf\page\IPage::assignVariables()
+        * @inheritDoc
         */
        public function assignVariables() {
                parent::assignVariables();
@@ -210,14 +210,14 @@ class ConversationMessageAddForm extends MessageForm {
        }
        
        /**
-        * @see \wcf\page\ITrackablePage::getObjectType()
+        * @inheritDoc
         */
        public function getObjectType() {
                return 'com.woltlab.wcf.conversation';
        }
        
        /**
-        * @see \wcf\page\ITrackablePage::getObjectID()
+        * @inheritDoc
         */
        public function getObjectID() {
                return $this->conversationID;
index 84068334f1df5dc90c703b660222c0be3c1204a6..3d19cfd132ab984e474b62926ff29e411835e1da 100644 (file)
@@ -24,7 +24,7 @@ use wcf\util\HeaderUtil;
  */
 class ConversationMessageEditForm extends ConversationAddForm {
        /**
-        * @see \wcf\page\AbstractPage::$templateName
+        * @inheritDoc
         */
        public $templateName = 'conversationMessageEdit';
        
@@ -65,7 +65,7 @@ class ConversationMessageEditForm extends ConversationAddForm {
        public $isFirstMessage = false;
        
        /**
-        * @see \wcf\form\IPage::readParameters()
+        * @inheritDoc
         */
        public function readParameters() {
                MessageForm::readParameters();
@@ -91,7 +91,7 @@ class ConversationMessageEditForm extends ConversationAddForm {
        }
        
        /**
-        * @see \wcf\form\IForm::readFormParameters()
+        * @inheritDoc
         */
        public function readFormParameters() {
                parent::readFormParameters();
@@ -100,7 +100,7 @@ class ConversationMessageEditForm extends ConversationAddForm {
        }
        
        /**
-        * @see \wcf\form\IForm::validate()
+        * @inheritDoc
         */
        public function validate() {
                if ($this->isFirstMessage && $this->conversation->isDraft) parent::validate();
@@ -108,14 +108,14 @@ class ConversationMessageEditForm extends ConversationAddForm {
        }
        
        /**
-        * @see \wcf\form\MessageForm::validateSubject()
+        * @inheritDoc
         */
        protected function validateSubject() {
                if ($this->isFirstMessage) parent::validateSubject();
        }
        
        /**
-        * @see \wcf\form\IForm::save()
+        * @inheritDoc
         */
        public function save() {
                MessageForm::save();
@@ -180,7 +180,7 @@ class ConversationMessageEditForm extends ConversationAddForm {
        }
        
        /**
-        * @see \wcf\page\IPage::readData()
+        * @inheritDoc
         */
        public function readData() {
                MessageForm::readData();
@@ -225,7 +225,7 @@ class ConversationMessageEditForm extends ConversationAddForm {
        }
        
        /**
-        * @see \wcf\page\IPage::assignVariables()
+        * @inheritDoc
         */
        public function assignVariables() {
                parent::assignVariables();
@@ -243,14 +243,14 @@ class ConversationMessageEditForm extends ConversationAddForm {
        }
        
        /**
-        * @see \wcf\page\ITrackablePage::getObjectType()
+        * @inheritDoc
         */
        public function getObjectType() {
                return 'com.woltlab.wcf.conversation';
        }
        
        /**
-        * @see \wcf\page\ITrackablePage::getObjectID()
+        * @inheritDoc
         */
        public function getObjectID() {
                return $this->conversationID;
index 3d0c93abb5d01d729df70a14bd7b160987c1d0b2..ef62a93c8149479ef96989d48a451d41a266b346 100644 (file)
@@ -15,12 +15,12 @@ use wcf\system\WCF;
  */
 class ConversationFeedPage extends AbstractFeedPage {
        /**
-        * @see \wcf\page\AbstractPage::$loginRequired
+        * @inheritDoc
         */
        public $loginRequired = true;
        
        /**
-        * @see \wcf\page\IPage::readData()
+        * @inheritDoc
         */
        public function readData() {
                parent::readData();
index 5f4753cb823ca46b30ec71268d5f33dd5a270584..3f00e0279a20c5e0f5a3830433377b87389cf6b2 100644 (file)
@@ -18,28 +18,28 @@ use wcf\util\ArrayUtil;
  */
 class ConversationMessageAttachmentObjectType extends AbstractAttachmentObjectType {
        /**
-        * @see \wcf\system\attachment\IAttachmentObjectType::getMaxSize()
+        * @inheritDoc
         */
        public function getMaxSize() {
                return WCF::getSession()->getPermission('user.conversation.maxAttachmentSize');
        }
        
        /**
-        * @see \wcf\system\attachment\IAttachmentObjectType::getAllowedExtensions()
+        * @inheritDoc
         */
        public function getAllowedExtensions() {
                return ArrayUtil::trim(explode("\n", WCF::getSession()->getPermission('user.conversation.allowedAttachmentExtensions')));
        }
        
        /**
-        * @see \wcf\system\attachment\IAttachmentObjectType::getMaxCount()
+        * @inheritDoc
         */
        public function getMaxCount() {
                return WCF::getSession()->getPermission('user.conversation.maxAttachmentCount');
        }
        
        /**
-        * @see \wcf\system\attachment\IAttachmentObjectType::canDownload()
+        * @inheritDoc
         */
        public function canDownload($objectID) {
                if ($objectID) {
@@ -52,7 +52,7 @@ class ConversationMessageAttachmentObjectType extends AbstractAttachmentObjectTy
        }
        
        /**
-        * @see \wcf\system\attachment\IAttachmentObjectType::canUpload()
+        * @inheritDoc
         */
        public function canUpload($objectID, $parentObjectID = 0) {
                if (!WCF::getSession()->getPermission('user.conversation.canUploadAttachment')) {
@@ -69,7 +69,7 @@ class ConversationMessageAttachmentObjectType extends AbstractAttachmentObjectTy
        }
        
        /**
-        * @see \wcf\system\attachment\IAttachmentObjectType::canDelete()
+        * @inheritDoc
         */
        public function canDelete($objectID) {
                if ($objectID) {
@@ -81,7 +81,7 @@ class ConversationMessageAttachmentObjectType extends AbstractAttachmentObjectTy
        }
        
        /**
-        * @see \wcf\system\attachment\IAttachmentObjectType::cacheObjects()
+        * @inheritDoc
         */
        public function cacheObjects(array $objectIDs) {
                $messageList = new ConversationMessageList();
@@ -104,7 +104,7 @@ class ConversationMessageAttachmentObjectType extends AbstractAttachmentObjectTy
        }
        
        /**
-        * @see \wcf\system\attachment\IAttachmentObjectType::setPermissions()
+        * @inheritDoc
         */
        public function setPermissions(array $attachments) {
                $messageIDs = [];
index e5616cc36f9770e9f49d31667cb1149f5a2f4c56..3238dc26e16b54e2a8160936feecd37a9b7d08d4 100644 (file)
@@ -17,7 +17,7 @@ use wcf\system\WCF;
  */
 class ConversationClipboardAction extends AbstractClipboardAction {
        /**
-        * @see \wcf\system\clipboard\action\AbstractClipboardAction::$actionClassActions
+        * @inheritDoc
         */
        protected $actionClassActions = ['close', 'markAsRead', 'open'];
        
@@ -28,12 +28,12 @@ class ConversationClipboardAction extends AbstractClipboardAction {
        public $conversations = null;
        
        /**
-        * @see \wcf\system\clipboard\action\AbstractClipboardAction::$supportedActions
+        * @inheritDoc
         */
        protected $supportedActions = ['assignLabel', 'close', 'leave', 'leavePermanently', 'markAsRead', 'open', 'restore'];
        
        /**
-        * @see \wcf\system\clipboard\action\IClipboardAction::execute()
+        * @inheritDoc
         */
        public function execute(array $objects, ClipboardAction $action) {
                if ($this->conversations === null) {
@@ -101,14 +101,14 @@ class ConversationClipboardAction extends AbstractClipboardAction {
        }
        
        /**
-        * @see \wcf\system\clipboard\action\IClipboardAction::getClassName()
+        * @inheritDoc
         */
        public function getClassName() {
                return 'wcf\data\conversation\ConversationAction';
        }
        
        /**
-        * @see \wcf\system\clipboard\action\IClipboardAction::getTypeName()
+        * @inheritDoc
         */
        public function getTypeName() {
                return 'com.woltlab.wcf.conversation.conversation';
index 4f6a67d06d2196af35aaafdcf3929df6ae080bd2..1f7911290dd27be6914d58e6df4adf94a30e9fe5 100644 (file)
@@ -24,7 +24,7 @@ class ConversationAttachmentImporter extends AbstractAttachmentImporter {
        }
        
        /**
-        * @see \wcf\system\importer\IImporter::import()
+        * @inheritDoc
         */
        public function import($oldID, array $data, array $additionalData = []) {
                $data['objectID'] = ImportHandler::getInstance()->getNewID('com.woltlab.wcf.conversation.message', $data['objectID']);
index 7d69e2c4b2bed6841d2a0df55cc2f6e4265cf53b..da9a08fa521241682c7069c5b5dbb0bfc4426208 100644 (file)
@@ -15,12 +15,12 @@ use wcf\data\conversation\ConversationEditor;
  */
 class ConversationImporter extends AbstractImporter {
        /**
-        * @see \wcf\system\importer\AbstractImporter::$className
+        * @inheritDoc
         */
        protected $className = 'wcf\data\conversation\Conversation';
        
        /**
-        * @see \wcf\system\importer\IImporter::import()
+        * @inheritDoc
         */
        public function import($oldID, array $data, array $additionalData = []) {
                $oldUserID = $data['userID'];
index b5a24f3889fbe337d289f64ff23fdfcedc47c51d..f85ca12c0fc7bf36b681b5ca7bd26fe5d99fd979 100644 (file)
@@ -14,12 +14,12 @@ use wcf\data\conversation\label\ConversationLabelAction;
  */
 class ConversationLabelImporter extends AbstractImporter {
        /**
-        * @see \wcf\system\importer\AbstractImporter::$className
+        * @inheritDoc
         */
        protected $className = 'wcf\data\conversation\label\ConversationLabel';
        
        /**
-        * @see \wcf\system\importer\IImporter::import()
+        * @inheritDoc
         */
        public function import($oldID, array $data, array $additionalData = []) {
                $data['userID'] = ImportHandler::getInstance()->getNewID('com.woltlab.wcf.user', $data['userID']);
index 79609cfb1cbed02387d2ef0fc5dafaba1d690d88..0d68f60dd5fa06c729a3b7d5e78d21edf1f05c92 100644 (file)
@@ -15,12 +15,12 @@ use wcf\data\conversation\message\ConversationMessageEditor;
  */
 class ConversationMessageImporter extends AbstractImporter {
        /**
-        * @see \wcf\system\importer\AbstractImporter::$className
+        * @inheritDoc
         */
        protected $className = 'wcf\data\conversation\message\ConversationMessage';
        
        /**
-        * @see \wcf\system\importer\IImporter::import()
+        * @inheritDoc
         */
        public function import($oldID, array $data, array $additionalData = []) {
                $data['conversationID'] = ImportHandler::getInstance()->getNewID('com.woltlab.wcf.conversation', $data['conversationID']);
index 39d3fb4bdaf928d441ceaa0ef20f83c5ee8d53e3..e9df0680e835309501b2baaa7a73757fd0e546bd 100644 (file)
@@ -14,7 +14,7 @@ use wcf\system\WCF;
  */
 class ConversationUserImporter extends AbstractImporter {
        /**
-        * @see \wcf\system\importer\IImporter::import()
+        * @inheritDoc
         */
        public function import($oldID, array $data, array $additionalData = []) {
                $data['conversationID'] = ImportHandler::getInstance()->getNewID('com.woltlab.wcf.conversation', $data['conversationID']);
index 51fd421ace2ff3ee23cb2bfbb8e60ab1a94e349c..41d8e562d85f0778a55be07b7a03873127caf83e 100644 (file)
@@ -15,7 +15,7 @@ use wcf\data\conversation\ConversationList;
  */
 class ConversationMessageQuoteHandler extends AbstractMessageQuoteHandler {
        /**
-        * @see \wcf\system\message\quote\AbstractMessageQuoteHandler::getMessages()
+        * @inheritDoc
         */
        protected function getMessages(array $data) {
                // read messages
index e38c08e59a5243c88c12f855bcb0718344cc0d40..5485de09f9bb6d73c235022c42f46bbda590ff44 100644 (file)
@@ -24,17 +24,17 @@ use wcf\system\WCF;
  */
 class ConversationMessageModerationQueueReportHandler extends AbstractModerationQueueHandler implements IModerationQueueReportHandler {
        /**
-        * @see \wcf\system\moderation\queue\AbstractModerationQueueHandler::$className
+        * @inheritDoc
         */
        protected $className = 'wcf\data\conversation\message\ConversationMessage';
        
        /**
-        * @see \wcf\system\moderation\queue\AbstractModerationQueueHandler::$definitionName
+        * @inheritDoc
         */
        protected $definitionName = 'com.woltlab.wcf.moderation.report';
        
        /**
-        * @see \wcf\system\moderation\queue\AbstractModerationQueueHandler::$objectType
+        * @inheritDoc
         */
        protected $objectType = 'com.woltlab.wcf.conversation.message';
        
@@ -45,12 +45,12 @@ class ConversationMessageModerationQueueReportHandler extends AbstractModeration
        protected static $messages = [];
        
        /**
-        * @see \wcf\system\moderation\queue\AbstractModerationQueueHandler::$requiredPermission
+        * @inheritDoc
         */
        protected $requiredPermission = 'mod.conversation.canModerateConversation';
        
        /**
-        * @see \wcf\system\moderation\queue\IModerationQueueHandler::assignQueues()
+        * @inheritDoc
         */
        public function assignQueues(array $queues) {
                $assignments = [];
@@ -67,7 +67,7 @@ class ConversationMessageModerationQueueReportHandler extends AbstractModeration
        }
        
        /**
-        * @see \wcf\system\moderation\queue\report\IModerationQueueReportHandler::canReport()
+        * @inheritDoc
         */
        public function canReport($objectID) {
                if (!$this->isValid($objectID)) {
@@ -82,14 +82,14 @@ class ConversationMessageModerationQueueReportHandler extends AbstractModeration
        }
        
        /**
-        * @see \wcf\system\moderation\queue\IModerationQueueHandler::getContainerID()
+        * @inheritDoc
         */
        public function getContainerID($objectID) {
                return 0;
        }
        
        /**
-        * @see \wcf\system\moderation\queue\report\IModerationQueueReportHandler::getReportedContent()
+        * @inheritDoc
         */
        public function getReportedContent(ViewableModerationQueue $queue) {
                WCF::getTPL()->assign([
@@ -100,7 +100,7 @@ class ConversationMessageModerationQueueReportHandler extends AbstractModeration
        }
        
        /**
-        * @see \wcf\system\moderation\queue\report\IModerationQueueReportHandler::getReportedObject()
+        * @inheritDoc
         */
        public function getReportedObject($objectID) {
                if ($this->isValid($objectID)) {
@@ -111,7 +111,7 @@ class ConversationMessageModerationQueueReportHandler extends AbstractModeration
        }
        
        /**
-        * @see \wcf\system\moderation\queue\IModerationQueueHandler::isValid()
+        * @inheritDoc
         */
        public function isValid($objectID) {
                if ($this->getMessage($objectID) === null) {
@@ -139,7 +139,7 @@ class ConversationMessageModerationQueueReportHandler extends AbstractModeration
        }
        
        /**
-        * @see \wcf\system\moderation\queue\IModerationQueueHandler::populate()
+        * @inheritDoc
         */
        public function populate(array $queues) {
                $objectIDs = [];
@@ -184,7 +184,7 @@ class ConversationMessageModerationQueueReportHandler extends AbstractModeration
        }
        
        /**
-        * @see \wcf\system\moderation\queue\IModerationQueueHandler::removeContent()
+        * @inheritDoc
         */
        public function removeContent(ModerationQueue $queue, $message) {
                if ($this->isValid($queue->objectID)) {
index b9d2bf5ed32339cafde99824e0b942f014a63274..0ff5706e61d3f930e45e8c639d1d59854a3c0161 100644 (file)
@@ -37,7 +37,7 @@ class ConversationMessageSearch extends AbstractSearchableObjectType {
        public $messageCache = [];
        
        /**
-        * @see \wcf\system\search\ISearchableObjectType::cacheObjects()
+        * @inheritDoc
         */
        public function cacheObjects(array $objectIDs, array $additionalData = null) {
                $messageList = new SearchResultConversationMessageList();
@@ -49,7 +49,7 @@ class ConversationMessageSearch extends AbstractSearchableObjectType {
        }
        
        /**
-        * @see \wcf\system\search\ISearchableObjectType::getAdditionalData()
+        * @inheritDoc
         */
        public function getAdditionalData() {
                return [
@@ -58,7 +58,7 @@ class ConversationMessageSearch extends AbstractSearchableObjectType {
        }
        
        /**
-        * @see \wcf\system\search\ISearchableObjectType::getObject()
+        * @inheritDoc
         */
        public function getObject($objectID) {
                if (isset($this->messageCache[$objectID])) return $this->messageCache[$objectID];
@@ -66,7 +66,7 @@ class ConversationMessageSearch extends AbstractSearchableObjectType {
        }
        
        /**
-        * @see \wcf\system\search\ISearchableObjectType::getJoins()
+        * @inheritDoc
         */
        public function getJoins() {
                return "JOIN wcf".WCF_N."_conversation_to_user conversation_to_user ON (conversation_to_user.participantID = ".WCF::getUser()->userID." AND conversation_to_user.conversationID = ".$this->getTableName().".conversationID)
@@ -74,28 +74,28 @@ class ConversationMessageSearch extends AbstractSearchableObjectType {
        }
        
        /**
-        * @see \wcf\system\search\ISearchableObjectType::getTableName()
+        * @inheritDoc
         */
        public function getTableName() {
                return 'wcf'.WCF_N.'_conversation_message';
        }
        
        /**
-        * @see \wcf\system\search\ISearchableObjectType::getIDFieldName()
+        * @inheritDoc
         */
        public function getIDFieldName() {
                return $this->getTableName().'.messageID';
        }
        
        /**
-        * @see \wcf\system\search\ISearchableObjectType::getSubjectFieldName()
+        * @inheritDoc
         */
        public function getSubjectFieldName() {
                return 'conversation.subject';
        }
        
        /**
-        * @see \wcf\system\search\ISearchableObjectType::getConditions()
+        * @inheritDoc
         */
        public function getConditions(IForm $form = null) {
                $conditionBuilder = new PreparedStatementConditionBuilder();
@@ -111,14 +111,14 @@ class ConversationMessageSearch extends AbstractSearchableObjectType {
        }
        
        /**
-        * @see \wcf\system\search\ISearchableObjectType::isAccessible()
+        * @inheritDoc
         */
        public function isAccessible() {
                return (WCF::getUser()->userID ? true : false);
        }
        
        /**
-        * @see \wcf\system\search\ISearchableObjectType::getFormTemplateName()
+        * @inheritDoc
         */
        public function getFormTemplateName() {
                if ($this->conversation) {
@@ -129,7 +129,7 @@ class ConversationMessageSearch extends AbstractSearchableObjectType {
        }
        
        /**
-        * @see \wcf\system\search\ISearchableObjectType::show()
+        * @inheritDoc
         */
        public function show(IForm $form = null) {
                // get existing values
index 94252c2615d48a8d649129d2c5a40973aa04808d..8f2052bc7f1bc052093d30a95be37addc55d0ae2 100644 (file)
@@ -13,7 +13,7 @@ namespace wcf\system\stat;
  */
 class ConversationMessageStatDailyHandler extends AbstractStatDailyHandler {
        /**
-        * @see \wcf\system\stat\IStatDailyHandler::getData()
+        * @inheritDoc
         */
        public function getData($date) {
                return [
index 7e935d046268fb04bea6dd8aa32abc7de05baac2..29fcdc683a9c996244ed2f14b276c26242779d0f 100644 (file)
@@ -13,7 +13,7 @@ namespace wcf\system\stat;
  */
 class ConversationStatDailyHandler extends AbstractStatDailyHandler {
        /**
-        * @see \wcf\system\stat\IStatDailyHandler::getData()
+        * @inheritDoc
         */
        public function getData($date) {
                return [
index 9d0ac9f8d83b91da6216c89167f5c183bf3d0372..148b9b41de08e1c3c623bddeb24571919c3484f5 100644 (file)
@@ -14,12 +14,12 @@ use wcf\system\request\LinkHandler;
  */
 class ConversationMessageUserNotificationEvent extends AbstractUserNotificationEvent {
        /**
-        * @see \wcf\system\user\notification\event\AbstractUserNotificationEvent::$stackable
+        * @inheritDoc
         */
        protected $stackable = true;
        
        /**
-        * @see \wcf\system\user\notification\event\IUserNotificationEvent::getMessage()
+        * @inheritDoc
         */
        public function getTitle() {
                $count = count($this->getAuthors());
@@ -31,7 +31,7 @@ class ConversationMessageUserNotificationEvent extends AbstractUserNotificationE
        }
        
        /**
-        * @see \wcf\system\user\notification\event\IUserNotificationEvent::getMessage()
+        * @inheritDoc
         */
        public function getMessage() {
                $authors = array_values($this->getAuthors());
@@ -54,7 +54,7 @@ class ConversationMessageUserNotificationEvent extends AbstractUserNotificationE
        }
        
        /**
-        * @see \wcf\system\user\notification\event\IUserNotificationEvent::getEmailMessage()
+        * @inheritDoc
         */
        public function getEmailMessage($notificationType = 'instant') {
                return $this->getLanguage()->getDynamicVariable('wcf.user.notification.conversation.message.mail', [
@@ -65,7 +65,7 @@ class ConversationMessageUserNotificationEvent extends AbstractUserNotificationE
        }
        
        /**
-        * @see \wcf\system\user\notification\event\IUserNotificationEvent::getLink()
+        * @inheritDoc
         */
        public function getLink() {
                return LinkHandler::getInstance()->getLink('Conversation', [
@@ -75,14 +75,14 @@ class ConversationMessageUserNotificationEvent extends AbstractUserNotificationE
        }
        
        /**
-        * @see \wcf\system\user\notification\event\IUserNotificationEvent::getEventHash()
+        * @inheritDoc
         */
        public function getEventHash() {
                return sha1($this->eventID . '-' . $this->userNotificationObject->conversationID);
        }
        
        /**
-        * @see \wcf\system\user\notification\event\IUserNotificationEvent::checkAccess()
+        * @inheritDoc
         */
        public function checkAccess() {
                return $this->userNotificationObject->getConversation()->canRead();
index c1715f31d2179522e740278bc81c733c03fa11c9..d19b9a776427d1caae05ec59a3873c0a6b1eb584 100644 (file)
@@ -14,14 +14,14 @@ use wcf\system\request\LinkHandler;
  */
 class ConversationUserNotificationEvent extends AbstractUserNotificationEvent {
        /**
-        * @see \wcf\system\user\notification\event\IUserNotificationEvent::getMessage()
+        * @inheritDoc
         */
        public function getTitle() {
                return $this->getLanguage()->get('wcf.user.notification.conversation.title');
        }
        
        /**
-        * @see \wcf\system\user\notification\event\IUserNotificationEvent::getMessage()
+        * @inheritDoc
         */
        public function getMessage() {
                return $this->getLanguage()->getDynamicVariable('wcf.user.notification.conversation.message', [
@@ -31,7 +31,7 @@ class ConversationUserNotificationEvent extends AbstractUserNotificationEvent {
        }
        
        /**
-        * @see \wcf\system\user\notification\event\IUserNotificationEvent::getEmailMessage()
+        * @inheritDoc
         */
        public function getEmailMessage($notificationType = 'instant') {
                return $this->getLanguage()->getDynamicVariable('wcf.user.notification.conversation.mail', [
@@ -42,14 +42,14 @@ class ConversationUserNotificationEvent extends AbstractUserNotificationEvent {
        }
        
        /**
-        * @see \wcf\system\user\notification\event\IUserNotificationEvent::getLink()
+        * @inheritDoc
         */
        public function getLink() {
                return LinkHandler::getInstance()->getLink('Conversation', ['object' => $this->userNotificationObject]);
        }
        
        /**
-        * @see \wcf\system\user\notification\event\IUserNotificationEvent::checkAccess()
+        * @inheritDoc
         */
        public function checkAccess() {
                return $this->userNotificationObject->canRead();
index 2ffd50db3196c845abec67a70fc14e9435d326b0..8444aaba7c136c4c1a332a92e63464f817228658 100644 (file)
@@ -13,17 +13,17 @@ namespace wcf\system\user\notification\object\type;
  */
 class ConversationMessageNotificationObjectType extends AbstractUserNotificationObjectType {
        /**
-        * @see \wcf\system\user\notification\object\type\AbstractUserNotificationObjectType::$decoratorClassName
+        * @inheritDoc
         */
        protected static $decoratorClassName = 'wcf\system\user\notification\object\ConversationMessageUserNotificationObject';
        
        /**
-        * @see \wcf\system\user\notification\object\type\AbstractUserNotificationObjectType::$objectClassName
+        * @inheritDoc
         */
        protected static $objectClassName = 'wcf\data\conversation\message\ConversationMessage';
        
        /**
-        * @see \wcf\system\user\notification\object\type\AbstractUserNotificationObjectType::$objectListClassName
+        * @inheritDoc
         */
        protected static $objectListClassName = 'wcf\data\conversation\message\ConversationMessageList';
 }
index 3b5efb43e7db4147e03bf0f1666a0188eeff5337..6c80523c4ef496094ffa95b04e0c5592d6889cdc 100644 (file)
@@ -15,22 +15,22 @@ use wcf\system\WCF;
  */
 class ConversationNotificationObjectType extends AbstractUserNotificationObjectType {
        /**
-        * @see \wcf\system\user\notification\object\type\AbstractUserNotificationObjectType::$decoratorClassName
+        * @inheritDoc
         */
        protected static $decoratorClassName = 'wcf\system\user\notification\object\ConversationUserNotificationObject';
        
        /**
-        * @see \wcf\system\user\notification\object\type\AbstractUserNotificationObjectType::$objectClassName
+        * @inheritDoc
         */
        protected static $objectClassName = 'wcf\data\conversation\Conversation';
        
        /**
-        * @see \wcf\system\user\notification\object\type\AbstractUserNotificationObjectType::$objectListClassName
+        * @inheritDoc
         */
        protected static $objectListClassName = 'wcf\data\conversation\ConversationList';
        
        /**
-        * @see \wcf\system\user\notification\object\type\IUserNotificationObjectType::getObjectsByIDs()
+        * @inheritDoc
         */
        public function getObjectsByIDs(array $objectIDs) {
                $objects = Conversation::getUserConversations($objectIDs, WCF::getUser()->userID);
index 95196a857ffc6fffd0d2b649379ac6f399c1fb18..e813ef62b7d76c3fb5a15ff69ebe404553ce8bfa 100644 (file)
@@ -19,12 +19,12 @@ use wcf\system\WCF;
  */
 class ConversationMessageRebuildDataWorker extends AbstractRebuildDataWorker {
        /**
-        * @see \wcf\system\worker\AbstractWorker::$limit
+        * @inheritDoc
         */
        protected $limit = 500;
        
        /**
-        * @see \wcf\system\worker\IWorker::countObjects()
+        * @inheritDoc
         */
        public function countObjects() {
                if ($this->count === null) {
@@ -39,7 +39,7 @@ class ConversationMessageRebuildDataWorker extends AbstractRebuildDataWorker {
        }
        
        /**
-        * @see \wcf\system\worker\AbstractRebuildDataWorker::initObjectList
+        * @inheritDoc
         */
        protected function initObjectList() {
                $this->objectList = new ConversationMessageList();
@@ -49,7 +49,7 @@ class ConversationMessageRebuildDataWorker extends AbstractRebuildDataWorker {
        }
        
        /**
-        * @see \wcf\system\worker\IWorker::execute()
+        * @inheritDoc
         */
        public function execute() {
                $this->objectList->getConditionBuilder()->add('conversation_message.messageID BETWEEN ? AND ?', [$this->limit * $this->loopCount + 1, $this->limit * $this->loopCount + $this->limit]);
index c9376fa4bb47b40a43a6d300a4ac51f4ad8fdd2f..f519bd575b8ec22a3cc1bb7a2e0e5c4fefd53c3e 100644 (file)
@@ -18,12 +18,12 @@ use wcf\system\WCF;
  */
 class ConversationRebuildDataWorker extends AbstractRebuildDataWorker {
        /**
-        * @see \wcf\system\worker\AbstractWorker::$limit
+        * @inheritDoc
         */
        protected $limit = 100;
        
        /**
-        * @see \wcf\system\worker\IWorker::countObjects()
+        * @inheritDoc
         */
        public function countObjects() {
                if ($this->count === null) {
@@ -38,7 +38,7 @@ class ConversationRebuildDataWorker extends AbstractRebuildDataWorker {
        }
        
        /**
-        * @see \wcf\system\worker\AbstractRebuildDataWorker::initObjectList
+        * @inheritDoc
         */
        protected function initObjectList() {
                $this->objectList = new ConversationList();
@@ -46,7 +46,7 @@ class ConversationRebuildDataWorker extends AbstractRebuildDataWorker {
        }
        
        /**
-        * @see \wcf\system\worker\IWorker::execute()
+        * @inheritDoc
         */
        public function execute() {
                $this->objectList->getConditionBuilder()->add('conversation.conversationID BETWEEN ? AND ?', [$this->limit * $this->loopCount + 1, $this->limit * $this->loopCount + $this->limit]);