Issues (22)

routes/api/property-pages.php (1 issue)

Labels
Severity
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
The method get() does not exist on Illuminate\Support\Facades\Route. ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

4
Route::/** @scrutinizer ignore-call */ 
5
       get('/properties/properties-offers', \NovaIprosoftwareApi\Http\Controllers\Properties\Offers\OffersListController::class);

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.

Loading history...
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