From e628512df878e8534dd7ebe313973ca9790e0379 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Joshua=20R=C3=BCsweg?= Date: Tue, 10 Apr 2018 16:57:27 +0200 Subject: [PATCH] Fix documentation for reaction types See #2508 --- .../files/lib/data/reaction/type/ReactionType.class.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/wcfsetup/install/files/lib/data/reaction/type/ReactionType.class.php b/wcfsetup/install/files/lib/data/reaction/type/ReactionType.class.php index 8073b19909..e4f96ffaaf 100644 --- a/wcfsetup/install/files/lib/data/reaction/type/ReactionType.class.php +++ b/wcfsetup/install/files/lib/data/reaction/type/ReactionType.class.php @@ -5,7 +5,7 @@ use wcf\data\DatabaseObject; use wcf\system\WCF; /** - * Represents an object type definition. + * Represents a reaction type. * * @author Joshua Ruesweg * @copyright 2001-2018 WoltLab GmbH @@ -15,13 +15,13 @@ use wcf\system\WCF; * * @property-read integer $reactionTypeID unique id of the reaction type * @property-read string $reactionTitle - * @property-read integer $type type of the reaction (1 is positive, 2 is neutral and 3 is negative) + * @property-read integer $type type of the reaction (1 is positive, 0 is neutral and -1 is negative) * @property-read integer $showOrder position of the reaction type in relation to the other reaction types * @property-read integer $iconType the icon type of the reaction * @property-read string $iconFile the file location of the icon * @property-read string $iconName the icon name - * @property-read string $iconColor the icon color - * @property-read integer $isDisabled is `1` if the ad is disabled and thus not shown, otherwise `0` + * @property-read string $iconColor the icon color + * @property-read integer $isDisabled is `1` if the reaction type is disabled and thus not shown, otherwise `0` */ class ReactionType extends DatabaseObject { /** -- 2.20.1