From 0a990da524c72d6697cdbccac94e663dd88c1ace Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jer=C3=B4me=20Bakker?= Date: Thu, 29 Jun 2023 14:34:26 +0200 Subject: [PATCH] chore: entity property documentation --- classes/ElggQuestion.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/classes/ElggQuestion.php b/classes/ElggQuestion.php index af856e1..4b5b7b3 100644 --- a/classes/ElggQuestion.php +++ b/classes/ElggQuestion.php @@ -4,8 +4,12 @@ /** * Question entity class + * + * @property string $comments_enabled are comments enabled for this question (on|off) + * @property int $solution_time timestamp by which time an answer should have been provided + * @property string $status status of the question (open|closed) */ -class ElggQuestion extends ElggObject { +class ElggQuestion extends \ElggObject { const SUBTYPE = 'question'; const STATUS_OPEN = 'open';