Remove `@noinspection PhpMissingParentCallCommonInspection` comments
authorMatthias Schmidt <gravatronics@live.com>
Mon, 18 Jan 2021 16:00:25 +0000 (17:00 +0100)
committerMatthias Schmidt <gravatronics@live.com>
Mon, 18 Jan 2021 16:00:25 +0000 (17:00 +0100)
15 files changed:
files/lib/data/conversation/ConversationAction.class.php
files/lib/data/conversation/ConversationParticipantList.class.php
files/lib/data/conversation/FeedConversationList.class.php
files/lib/data/conversation/message/SearchResultConversationMessage.class.php
files/lib/data/modification/log/ConversationLogModificationLogList.class.php
files/lib/page/ConversationListPage.class.php
files/lib/system/attachment/ConversationMessageAttachmentObjectType.class.php
files/lib/system/cache/runtime/UserConversationRuntimeCache.class.php
files/lib/system/page/handler/ConversationListPageHandler.class.php
files/lib/system/search/ConversationMessageSearch.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/ConversationNotificationObjectType.class.php
files/lib/system/worker/ConversationMessageRebuildDataWorker.class.php
files/lib/system/worker/ConversationRebuildDataWorker.class.php

index a69056da74acd6eb2cbb78e9b3d55f47e4e1d940..16706007f04f23648c88aab72e553fa4ba774f2c 100644 (file)
@@ -58,8 +58,6 @@ class ConversationAction extends AbstractDatabaseObjectAction implements
      */
     protected $conversationData = [];
 
-    /** @noinspection PhpMissingParentCallCommonInspection */
-
     /**
      * @inheritDoc
      * @return  Conversation
index 575cf22c0338cae886e84b8f42251c8a2c3f133d..55c616019c1fa98d595abe0041bb43a9fc619ac8 100644 (file)
@@ -61,8 +61,6 @@ class ConversationParticipantList extends UserProfileList
         $this->sqlJoins .= " LEFT JOIN wcf" . WCF_N . "_conversation_to_user conversation_to_user ON (conversation_to_user.participantID = user_table.userID AND conversation_to_user.conversationID = " . $conversationID . ")";
     }
 
-    /** @noinspection PhpMissingParentCallCommonInspection */
-
     /**
      * @inheritDoc
      */
@@ -79,8 +77,6 @@ class ConversationParticipantList extends UserProfileList
         return $row['count'];
     }
 
-    /** @noinspection PhpMissingParentCallCommonInspection */
-
     /**
      * @inheritDoc
      */
index 9f9c54f7b74bec3793f0e5ca3268b1aa05bc2015..701a8d6bcfd2dec4651ae46b6fcc88b88122d557 100644 (file)
@@ -29,8 +29,6 @@ class FeedConversationList extends ConversationList
      */
     public $sqlOrderBy = 'conversation.lastPostTime DESC';
 
-    /** @noinspection PhpMissingParentCallCommonInspection */
-
     /**
      * @inheritDoc
      */
index 2582acea3a130d2cacfa7f79eae2f8ef6d1710a7..d00005631710d274812d4121f12d333f9b1c0f3f 100644 (file)
@@ -25,8 +25,6 @@ class SearchResultConversationMessage extends ViewableConversationMessage implem
      */
     public $conversation;
 
-    /** @noinspection PhpMissingParentCallCommonInspection */
-
     /**
      * Returns the conversation object.
      *
@@ -44,8 +42,6 @@ class SearchResultConversationMessage extends ViewableConversationMessage implem
         return $this->conversation;
     }
 
-    /** @noinspection PhpMissingParentCallCommonInspection */
-
     /**
      * @inheritDoc
      */
@@ -80,8 +76,6 @@ class SearchResultConversationMessage extends ViewableConversationMessage implem
         return $this->getDecoratedObject()->getLink();
     }
 
-    /** @noinspection PhpMissingParentCallCommonInspection */
-
     /**
      * @inheritDoc
      */
index ad750aeb11c12f07dccbf76cab62cfe3e036c957..7babf94a66b2b92a036a0c0202e82275c07b611b 100644 (file)
@@ -39,8 +39,6 @@ class ConversationLogModificationLogList extends ModificationLogList
         );
     }
 
-    /** @noinspection PhpMissingParentCallCommonInspection */
-
     /**
      * @inheritDoc
      */
index a8713a95ef1f3d16ba492ce576701bf8d60bd506..29d338ba74b728adf94d12071f74fa720735124c 100644 (file)
@@ -151,8 +151,6 @@ class ConversationListPage extends SortablePage
         }
     }
 
-    /** @noinspection PhpMissingParentCallCommonInspection */
-
     /**
      * @inheritDoc
      */
index 99cf9d07d87805b683c3affd79f2192e93f00031..ce7e96d6d548f3c7b855b57e4ac850be12cd9112 100644 (file)
@@ -20,8 +20,6 @@ use wcf\util\ArrayUtil;
  */
 class ConversationMessageAttachmentObjectType extends AbstractAttachmentObjectType
 {
-    /** @noinspection PhpMissingParentCallCommonInspection */
-
     /**
      * @inheritDoc
      */
@@ -30,8 +28,6 @@ class ConversationMessageAttachmentObjectType extends AbstractAttachmentObjectTy
         return WCF::getSession()->getPermission('user.conversation.maxAttachmentSize');
     }
 
-    /** @noinspection PhpMissingParentCallCommonInspection */
-
     /**
      * @inheritDoc
      */
@@ -43,8 +39,6 @@ class ConversationMessageAttachmentObjectType extends AbstractAttachmentObjectTy
         ));
     }
 
-    /** @noinspection PhpMissingParentCallCommonInspection */
-
     /**
      * @inheritDoc
      */
@@ -131,8 +125,6 @@ class ConversationMessageAttachmentObjectType extends AbstractAttachmentObjectTy
         }
     }
 
-    /** @noinspection PhpMissingParentCallCommonInspection */
-
     /**
      * @inheritDoc
      */
index 690a66d5f042370e570fab4f61a4639f34bcde68..4d329170f9de2145034a7e64a05c92f7f3261002 100644 (file)
@@ -26,8 +26,6 @@ class UserConversationRuntimeCache extends AbstractRuntimeCache
      */
     protected $listClassName = UserConversationList::class;
 
-    /** @noinspection PhpMissingParentCallCommonInspection */
-
     /**
      * @inheritDoc
      */
index bd2f5f82f3fc81f2b7f2bb9423b282afa15dc302..785b2b650f6f74fee68e69bb9d33964c3d3688c9 100644 (file)
@@ -16,8 +16,6 @@ use wcf\system\WCF;
  */
 class ConversationListPageHandler extends AbstractMenuPageHandler
 {
-    /** @noinspection PhpMissingParentCallCommonInspection */
-
     /**
      * @inheritDoc
      */
@@ -26,8 +24,6 @@ class ConversationListPageHandler extends AbstractMenuPageHandler
         return ConversationHandler::getInstance()->getUnreadConversationCount();
     }
 
-    /** @noinspection PhpMissingParentCallCommonInspection */
-
     /**
      * @inheritDoc
      */
index dbf6b80057a4d8b1a89597784b9bb095ffa34ff0..190e78a2ca9fa3ea31e3fa5167ad61b2afe49028 100644 (file)
@@ -51,8 +51,6 @@ class ConversationMessageSearch extends AbstractSearchableObjectType
         }
     }
 
-    /** @noinspection PhpMissingParentCallCommonInspection */
-
     /**
      * @inheritDoc
      */
@@ -73,8 +71,6 @@ class ConversationMessageSearch extends AbstractSearchableObjectType
         }
     }
 
-    /** @noinspection PhpMissingParentCallCommonInspection */
-
     /**
      * @inheritDoc
      */
@@ -100,8 +96,6 @@ class ConversationMessageSearch extends AbstractSearchableObjectType
         return $this->getTableName() . '.messageID';
     }
 
-    /** @noinspection PhpMissingParentCallCommonInspection */
-
     /**
      * @inheritDoc
      */
@@ -110,8 +104,6 @@ class ConversationMessageSearch extends AbstractSearchableObjectType
         return 'conversation.subject';
     }
 
-    /** @noinspection PhpMissingParentCallCommonInspection */
-
     /**
      * @inheritDoc
      */
@@ -129,8 +121,6 @@ class ConversationMessageSearch extends AbstractSearchableObjectType
         return $conditionBuilder;
     }
 
-    /** @noinspection PhpMissingParentCallCommonInspection */
-
     /**
      * @inheritDoc
      */
@@ -146,8 +136,6 @@ class ConversationMessageSearch extends AbstractSearchableObjectType
         return WCF::getSession()->getPermission('user.conversation.canUseConversation');
     }
 
-    /** @noinspection PhpMissingParentCallCommonInspection */
-
     /**
      * @inheritDoc
      */
index 9faf2b49a5d4f4b970645adde4e0d5ca1a024ebe..07783ad372ef2e3006693ba3759a680dccb320ee 100644 (file)
@@ -70,8 +70,6 @@ class ConversationMessageUserNotificationEvent extends AbstractUserNotificationE
         ]);
     }
 
-    /** @noinspection PhpMissingParentCallCommonInspection */
-
     /**
      * @inheritDoc
      */
@@ -111,8 +109,6 @@ class ConversationMessageUserNotificationEvent extends AbstractUserNotificationE
         return $this->getUserNotificationObject()->getLink();
     }
 
-    /** @noinspection PhpMissingParentCallCommonInspection */
-
     /**
      * @inheritDoc
      */
@@ -121,8 +117,6 @@ class ConversationMessageUserNotificationEvent extends AbstractUserNotificationE
         return \sha1($this->eventID . '-' . $this->getUserNotificationObject()->conversationID);
     }
 
-    /** @noinspection PhpMissingParentCallCommonInspection */
-
     /**
      * @inheritDoc
      */
index 839541f4761c16c16e002e2cda7c417cbc126290..6568f363f279d0db9ca63b505d1fb5774860500b 100644 (file)
@@ -39,8 +39,6 @@ class ConversationUserNotificationEvent extends AbstractUserNotificationEvent im
         ]);
     }
 
-    /** @noinspection PhpMissingParentCallCommonInspection */
-
     /**
      * @inheritDoc
      */
@@ -73,8 +71,6 @@ class ConversationUserNotificationEvent extends AbstractUserNotificationEvent im
         return $this->getUserNotificationObject()->getLink();
     }
 
-    /** @noinspection PhpMissingParentCallCommonInspection */
-
     /**
      * @inheritDoc
      */
index f1b8af8900f65dc67fd3398a1b5867cf17703730..96ce0c6402b49c25658147607725347cffc17825 100644 (file)
@@ -32,8 +32,6 @@ class ConversationNotificationObjectType extends AbstractUserNotificationObjectT
      */
     protected static $objectListClassName = ConversationList::class;
 
-    /** @noinspection PhpMissingParentCallCommonInspection */
-
     /**
      * @inheritDoc
      */
index 92385415a5c4d9b535dfe1208f4324efc5f92a46..ad018d4f5f6d9c3c424ef25db2582ad712fcfa60 100644 (file)
@@ -33,8 +33,6 @@ class ConversationMessageRebuildDataWorker extends AbstractRebuildDataWorker
      */
     protected $htmlInputProcessor;
 
-    /** @noinspection PhpMissingParentCallCommonInspection */
-
     /**
      * @inheritDoc
      */
@@ -53,8 +51,6 @@ class ConversationMessageRebuildDataWorker extends AbstractRebuildDataWorker
         }
     }
 
-    /** @noinspection PhpMissingParentCallCommonInspection */
-
     /**
      * @inheritDoc
      */
index f8720fe09aee924d084eef538143f6721cffc54f..881bc61179acb89fad83414ce52495a284404916 100644 (file)
@@ -25,8 +25,6 @@ class ConversationRebuildDataWorker extends AbstractRebuildDataWorker
      */
     protected $limit = 100;
 
-    /** @noinspection PhpMissingParentCallCommonInspection */
-
     /**
      * @inheritDoc
      */
@@ -45,8 +43,6 @@ class ConversationRebuildDataWorker extends AbstractRebuildDataWorker
         }
     }
 
-    /** @noinspection PhpMissingParentCallCommonInspection */
-
     /**
      * @inheritDoc
      */