| Total Complexity | 2 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | class ExampleRepositoryEloquent extends BaseRepository implements ExampleRepository |
||
| 10 | { |
||
| 11 | protected $fieldSearchable = [ |
||
| 12 | 'name' => 'like', |
||
| 13 | ]; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * Specify Model. |
||
| 17 | * |
||
| 18 | * @return string |
||
| 19 | */ |
||
| 20 | public function model() |
||
| 23 | } |
||
| 24 | |||
| 25 | /** |
||
| 26 | * Specify Presenter. |
||
| 27 | * |
||
| 28 | * @return mixed |
||
| 29 | */ |
||
| 30 | public function presenter() |
||
| 35 |