1 | <?php |
||
8 | class BarangaysRepositoryEloquent extends EloquentBaseRepository implements BarangaysRepository |
||
9 | { |
||
10 | /** |
||
11 | * Get barangays by region, province and city ID. |
||
12 | * |
||
13 | * @param int $cityId |
||
14 | * @return \Illuminate\Database\Eloquent\Collection |
||
15 | */ |
||
16 | public function getByCity($cityId) |
||
24 | |||
25 | /** |
||
26 | * Get repository model. |
||
27 | * |
||
28 | * @return \Illuminate\Database\Eloquent\Model |
||
29 | */ |
||
30 | public function getModel() |
||
36 | |||
37 | /** |
||
38 | * Get barangays by region, province and city ID. |
||
39 | * |
||
40 | * @param int $regionId |
||
41 | * @param int $provinceId |
||
42 | * @param int $cityId |
||
43 | * @return \Illuminate\Database\Eloquent\Collection |
||
44 | */ |
||
45 | public function getByProvinceRegionAndCityId($regionId, $provinceId, $cityId) |
||
55 | } |
||
56 |
This check marks calls to methods that do not seem to exist on an object.
This is most likely the result of a method being renamed without all references to it being renamed likewise.