1 | <?php |
||
8 | class ActiveRepository extends BaseRepository |
||
9 | { |
||
10 | /** |
||
11 | * @param array $where |
||
12 | * @param array $columns |
||
13 | * @internal param array $attributes |
||
14 | * @return Collection |
||
15 | */ |
||
16 | public function findWhere(array $where, $columns = ['*']) |
||
20 | |||
21 | /** |
||
22 | * @param $column |
||
23 | * @param $values |
||
24 | * @throws RepositoryException |
||
25 | * @return Collection |
||
26 | */ |
||
27 | public function findWhereIn($column, $values) |
||
34 | } |
||
35 |