From 5c941abafec148dc7cbdba26fa2edfca4c278566 Mon Sep 17 00:00:00 2001 From: Matthias Schmidt Date: Sun, 27 Jan 2019 12:30:19 +0100 Subject: [PATCH] Add missing since tags See #2223 See #2231 --- .../install/files/lib/data/comment/CommentAction.class.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/wcfsetup/install/files/lib/data/comment/CommentAction.class.php b/wcfsetup/install/files/lib/data/comment/CommentAction.class.php index 9d6e6156f6..cb8e21b818 100644 --- a/wcfsetup/install/files/lib/data/comment/CommentAction.class.php +++ b/wcfsetup/install/files/lib/data/comment/CommentAction.class.php @@ -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) { -- 2.20.1