Skip to content

Commit

Permalink
chore: entity property documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
jeabakker committed Jun 29, 2023
1 parent 0dc1d7b commit 0a990da
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion classes/ElggQuestion.php
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down

0 comments on commit 0a990da

Please sign in to comment.