| 1 | <?php |
||
| 10 | abstract class AbstractRepository extends BaseRepository |
||
| 11 | { |
||
| 12 | |||
| 13 | /** |
||
| 14 | * @param array $data |
||
| 15 | * @return Model |
||
| 16 | */ |
||
| 17 | 5 | public function forceCreate(array $data = []) |
|
| 24 | |||
| 25 | 11 | public function findWhere($where, $columns = ['*'], $or = false) |
|
| 30 | |||
| 31 | public function findMany($ids, $columns = ['*']) |
||
| 35 | |||
| 36 | } |
||
| 37 |