| Total Complexity | 2 |
| Total Lines | 27 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | class Comment extends ActiveRecordModel |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @var string $tableName name of the database table. |
||
| 14 | */ |
||
| 15 | protected $tableName = "Comment"; |
||
| 16 | |||
| 17 | |||
| 18 | |||
| 19 | /** variable |
||
| 20 | */ |
||
| 21 | public $id; |
||
| 22 | public $comment; |
||
| 23 | public $user_id; |
||
| 24 | |||
| 25 | /** Method |
||
| 26 | */ |
||
| 27 | public function findAllWhereDouble($where, $value) |
||
| 39 |