1 | <?php |
||
19 | class CommentQuery extends \yii\db\ActiveQuery |
||
20 | { |
||
21 | |||
22 | /** |
||
23 | * @param integer|array $id |
||
24 | * @return static |
||
25 | */ |
||
26 | public function byId($id) |
||
32 | |||
33 | /** |
||
34 | * @param string|array $entity |
||
35 | * @return static |
||
36 | */ |
||
37 | public function byEntity($entity) |
||
43 | |||
44 | /** |
||
45 | * @return static |
||
46 | */ |
||
47 | public function withoutDeleted() |
||
56 | } |
||
57 |