]> git.mxchange.org Git - hub.git/blobdiff - application/hub/main/helper/hub/answer/class_BaseHubAnswerHelper.php
Moved setter/getter and attribute itself 'packageTags' to a more generic class BaseHu...
[hub.git] / application / hub / main / helper / hub / answer / class_BaseHubAnswerHelper.php
index cfa4d407af9ad0a1894c3413e4e5dd6bf1d638ed..c5850d249f07e166e568194963d42355f37fd73c 100644 (file)
@@ -27,12 +27,6 @@ class BaseHubAnswerHelper extends BaseHubHelper {
         */
        private $messageData = array();
 
-       /**
-        * Package tags
-        */
-       private $packageTags = array();
-
-
        /**
         * Protected constructor
         *
@@ -61,25 +55,6 @@ class BaseHubAnswerHelper extends BaseHubHelper {
        public final function getMessageData () {
                return $this->messageData;
        }
-
-       /**
-        * Getter for package tags in a simple array
-        *
-        * @return      $packageTags    An array with all tags for the currently handled package
-        */
-       public final function getPackageTags () {
-               return $this->packageTags;
-       }
-
-       /**
-        * Setter for package tags in a simple array
-        *
-        * @param       $packageTags    An array with all tags for the currently handled package
-        * @return      void
-        */
-       public final function setPackageTags (array $packageTags) {
-               $this->packageTags = $packageTags;
-       }
 }
 
 // [EOF]