Fix IDE warnings about undefined methods
authorMatthias Schmidt <gravatronics@live.com>
Sun, 2 Oct 2016 13:29:42 +0000 (15:29 +0200)
committerMatthias Schmidt <gravatronics@live.com>
Sun, 2 Oct 2016 13:29:42 +0000 (15:29 +0200)
wcfsetup/install/files/lib/system/form/element/MultipleSelectionFormElement.class.php
wcfsetup/install/files/lib/system/form/element/SingleSelectionFormElement.class.php
wcfsetup/install/files/lib/system/message/QuickReplyManager.class.php

index aedd38270bf8680228aca282c73c57bf61b0a519..60ab6f261daa3ea4854d3daeb35373670c2bc478 100644 (file)
@@ -1,5 +1,6 @@
 <?php
 namespace wcf\system\form\element;
+use wcf\system\form\container\MultipleSelectionFormElementContainer;
 use wcf\util\StringUtil;
 
 /**
@@ -9,6 +10,8 @@ use wcf\util\StringUtil;
  * @copyright  2001-2016 WoltLab GmbH
  * @license    GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
  * @package    WoltLabSuite\Core\System\Form\Element
+ * 
+ * @method     MultipleSelectionFormElementContainer   getParent()
  */
 class MultipleSelectionFormElement extends AbstractNamedFormElement {
        /**
index 5ea297f7d0e6e1d9247e45d9dd12366c5bf5fbbe..a1100bc2c4dfb3200133801ec97612730a5be806 100644 (file)
@@ -1,5 +1,6 @@
 <?php
 namespace wcf\system\form\element;
+use wcf\system\form\container\SingleSelectionFormElementContainer;
 
 /**
  * Provides a radio form element.
@@ -8,6 +9,8 @@ namespace wcf\system\form\element;
  * @copyright  2001-2016 WoltLab GmbH
  * @license    GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
  * @package    WoltLabSuite\Core\System\Form\Element
+ * 
+ * @method     SingleSelectionFormElementContainer     getParent()
  */
 class SingleSelectionFormElement extends AbstractNamedFormElement {
        /**
index a3ecab98f4dbf4d1a11c192428a00278a82bee13..127cac79fdb502365a86c65c888c2d2d1ae681c6 100644 (file)
@@ -217,6 +217,7 @@ class QuickReplyManager extends SingletonFactory {
                        // calculate start index
                        $startIndex = $count - (count($messageList) - 1);
                        
+                       /** @noinspection PhpUndefinedMethodInspection */
                        WCF::getTPL()->assign([
                                'attachmentList' => $messageList->getAttachmentList(),
                                'container' => $this->container,