Add missing since tags
authorMatthias Schmidt <gravatronics@live.com>
Sun, 27 Jan 2019 11:30:19 +0000 (12:30 +0100)
committerMatthias Schmidt <gravatronics@live.com>
Sun, 27 Jan 2019 11:30:19 +0000 (12:30 +0100)
See #2223
See #2231

wcfsetup/install/files/lib/data/comment/CommentAction.class.php

index 9d6e6156f6df2e164fd0073c1159be1790d7bf57..cb8e21b818e9e384816dfc16feb54e65d4fcbf0c 100644 (file)
@@ -212,6 +212,7 @@ class CommentAction extends AbstractDatabaseObjectAction implements IMessageInli
         * Validates the `loadComment` action.
         * 
         * @throws      PermissionDeniedException
+        * @since       3.1
         */
        public function validateLoadComment() {
                $this->readInteger('objectID', false, 'data');
@@ -242,6 +243,7 @@ class CommentAction extends AbstractDatabaseObjectAction implements IMessageInli
         * Returns a rendered comment.
         * 
         * @return      string[]
+        * @since       3.1
         */
        public function loadComment() {
                if ($this->comment === null) {
@@ -257,6 +259,8 @@ class CommentAction extends AbstractDatabaseObjectAction implements IMessageInli
        
        /**
         * Validates the `loadResponse` action.
+        * 
+        * @since       3.1
         */
        public function validateLoadResponse() {
                $this->validateLoadComment();
@@ -264,8 +268,9 @@ class CommentAction extends AbstractDatabaseObjectAction implements IMessageInli
        
        /**
         * Returns a rendered comment.
-        *
+        * 
         * @return      string[]
+        * @since       3.1
         */
        public function loadResponse() {
                if ($this->comment === null || $this->response === null) {