1 | <?php |
||
2 | use Illuminate\Support\Facades\Route; |
||
3 | |||
4 | Route::get('/properties/properties-offers', \NovaIprosoftwareApi\Http\Controllers\Properties\Offers\OffersListController::class); |
||
0 ignored issues
–
show
|
|||
5 | Route::get('/properties/{ipro_id}', \NovaIprosoftwareApi\Http\Controllers\Properties\ShowController::class); |
||
6 | Route::get('/properties/{ipro_id}/rates', \NovaIprosoftwareApi\Http\Controllers\Properties\RatesListController::class); |
||
7 | Route::get('/properties/{ipro_id}/custom-rates', \NovaIprosoftwareApi\Http\Controllers\Properties\CustomRatesListController::class); |
||
8 | Route::get('/properties/{ipro_id}/extras', \NovaIprosoftwareApi\Http\Controllers\Properties\ExtrasListController::class); |
||
9 |
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.