1 | <?php |
||
8 | class ProvincesRepositoryEloquent extends EloquentBaseRepository implements ProvincesRepository |
||
9 | { |
||
10 | /** |
||
11 | * Get province by region ID. |
||
12 | * |
||
13 | * @param int $regionId |
||
14 | * @return \Illuminate\Database\Eloquent\Collection |
||
15 | */ |
||
16 | public function getProvinceByRegion($regionId) |
||
20 | |||
21 | /** |
||
22 | * Get repository model. |
||
23 | * |
||
24 | * @return \Illuminate\Database\Eloquent\Model |
||
25 | */ |
||
26 | public function getModel() |
||
32 | } |
||
33 |
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.