| 1 | <?php |
||
| 15 | class LessonRepositoryEloquent extends BaseRepository implements LessonRepository |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * Specify Model class name |
||
| 19 | * |
||
| 20 | * @return string |
||
| 21 | */ |
||
| 22 | public function model() |
||
| 26 | |||
| 27 | /** |
||
| 28 | * Specify Validator class name |
||
| 29 | * |
||
| 30 | * @return mixed |
||
| 31 | */ |
||
| 32 | public function validator() |
||
| 37 | |||
| 38 | |||
| 39 | /** |
||
| 40 | * Boot up the repository, pushing criteria |
||
| 41 | */ |
||
| 42 | public function boot() |
||
| 46 | } |
||
| 47 |