| 1 | <?php |
||
| 9 | class Thread extends Model |
||
| 10 | { |
||
| 11 | public $thread_title; |
||
| 12 | public $thread_id; |
||
| 13 | public $thread_replies; |
||
| 14 | public $thread_views; |
||
| 15 | public $original_poster=[]; |
||
| 16 | public $original_post = []; |
||
| 17 | public $recent_poster = []; |
||
| 18 | public $recent_post; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * Thread constructor. |
||
| 22 | * |
||
| 23 | * @param $threadData |
||
| 24 | */ |
||
| 25 | 4 | public function __construct($threadData) |
|
| 31 | } |