| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 24 | public function __construct() |
||
| 25 | { |
||
| 26 | parent::__construct(); |
||
| 27 | $this->initVar('report_id', \XOBJ_DTYPE_INT); |
||
| 28 | $this->initVar('post_id', \XOBJ_DTYPE_INT); |
||
| 29 | $this->initVar('reporter_uid', \XOBJ_DTYPE_INT); |
||
| 30 | $this->initVar('reporter_ip', \XOBJ_DTYPE_TXTBOX); |
||
| 31 | $this->initVar('report_time', \XOBJ_DTYPE_INT); |
||
| 32 | $this->initVar('report_text', \XOBJ_DTYPE_TXTBOX); |
||
| 33 | $this->initVar('report_result', \XOBJ_DTYPE_INT); |
||
| 34 | $this->initVar('report_memo', \XOBJ_DTYPE_TXTBOX); |
||
| 35 | } |
||
| 37 |