| 1 | <?php |
||
| 9 | class Post extends Model |
||
| 10 | { |
||
| 11 | public $post_time; |
||
| 12 | public $last_edit_time; |
||
| 13 | public $post_text; |
||
| 14 | public $signature; |
||
| 15 | public $post_id; |
||
| 16 | public $thread_id; |
||
| 17 | public $thread_title; |
||
| 18 | public $permalink; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * Post constructor. |
||
| 22 | * |
||
| 23 | * @param array $postData |
||
| 24 | */ |
||
| 25 | 10 | public function __construct(array $postData) |
|
| 31 | } |