Total Complexity | 2 |
Total Lines | 31 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | class Comment extends ActiveRecordModel |
||
12 | { |
||
13 | /** |
||
14 | * @var string $tableName name of the database table. |
||
15 | */ |
||
16 | protected $tableName = "Comment"; |
||
17 | protected $tableIdColumn = "commentId"; |
||
18 | |||
19 | |||
20 | |||
21 | /** |
||
22 | * Columns in the table. |
||
23 | * |
||
24 | * @var integer $id primary key auto incremented. |
||
25 | */ |
||
26 | public $commentId; |
||
27 | public $postId; |
||
28 | public $replyId; |
||
29 | public $id; |
||
30 | public $text; |
||
31 | |||
32 | public function findAllCommentsWhere($where, $value) |
||
44 |