Issues (22)

routes/inertia.php (14 issues)

1
<?php
2
3
use Illuminate\Support\Facades\Route;
4
use Laravel\Nova\Http\Requests\NovaRequest;
5
6
Route::get('/settings/contact-types', fn (NovaRequest $request) => inertia('NovaIprosoftwareApiSettingsContactTypes'));
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

6
Route::/** @scrutinizer ignore-call */ 
7
       get('/settings/contact-types', fn (NovaRequest $request) => inertia('NovaIprosoftwareApiSettingsContactTypes'));

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...
The parameter $request is not used and could be removed. ( Ignorable by Annotation )

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

6
Route::get('/settings/contact-types', fn (/** @scrutinizer ignore-unused */ NovaRequest $request) => inertia('NovaIprosoftwareApiSettingsContactTypes'));

This check looks for parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
7
Route::get('/settings/booking-rules', fn (NovaRequest $request) => inertia('NovaIprosoftwareApiSettingsBookingRules'));
0 ignored issues
show
The parameter $request is not used and could be removed. ( Ignorable by Annotation )

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

7
Route::get('/settings/booking-rules', fn (/** @scrutinizer ignore-unused */ NovaRequest $request) => inertia('NovaIprosoftwareApiSettingsBookingRules'));

This check looks for parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
8
Route::get('/settings/booking-tags', fn (NovaRequest $request) => inertia('NovaIprosoftwareApiSettingsBookingTags'));
0 ignored issues
show
The parameter $request is not used and could be removed. ( Ignorable by Annotation )

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

8
Route::get('/settings/booking-tags', fn (/** @scrutinizer ignore-unused */ NovaRequest $request) => inertia('NovaIprosoftwareApiSettingsBookingTags'));

This check looks for parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
9
Route::get('/settings/sources', fn (NovaRequest $request) => inertia('NovaIprosoftwareApiSettingsSources'));
0 ignored issues
show
The parameter $request is not used and could be removed. ( Ignorable by Annotation )

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

9
Route::get('/settings/sources', fn (/** @scrutinizer ignore-unused */ NovaRequest $request) => inertia('NovaIprosoftwareApiSettingsSources'));

This check looks for parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
10
Route::get('/settings/locations', fn (NovaRequest $request) => inertia('NovaIprosoftwareApiSettingsLocations'));
0 ignored issues
show
The parameter $request is not used and could be removed. ( Ignorable by Annotation )

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

10
Route::get('/settings/locations', fn (/** @scrutinizer ignore-unused */ NovaRequest $request) => inertia('NovaIprosoftwareApiSettingsLocations'));

This check looks for parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
11
Route::get('/settings/attributes', fn (NovaRequest $request) => inertia('NovaIprosoftwareApiSettingsAttributes'));
0 ignored issues
show
The parameter $request is not used and could be removed. ( Ignorable by Annotation )

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

11
Route::get('/settings/attributes', fn (/** @scrutinizer ignore-unused */ NovaRequest $request) => inertia('NovaIprosoftwareApiSettingsAttributes'));

This check looks for parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
12
13
Route::get('/contacts/get-contact', fn (NovaRequest $request) => inertia('NovaIprosoftwareApiContactsGetContact'));
0 ignored issues
show
The parameter $request is not used and could be removed. ( Ignorable by Annotation )

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

13
Route::get('/contacts/get-contact', fn (/** @scrutinizer ignore-unused */ NovaRequest $request) => inertia('NovaIprosoftwareApiContactsGetContact'));

This check looks for parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
14
15
Route::get('/properties/get-property-all', fn (NovaRequest $request) => inertia('NovaIprosoftwareApiPropertiesGetPropertyAll'));
0 ignored issues
show
The parameter $request is not used and could be removed. ( Ignorable by Annotation )

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

15
Route::get('/properties/get-property-all', fn (/** @scrutinizer ignore-unused */ NovaRequest $request) => inertia('NovaIprosoftwareApiPropertiesGetPropertyAll'));

This check looks for parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
16
Route::get('/properties/get-property-rates', fn (NovaRequest $request) => inertia('NovaIprosoftwareApiPropertiesGetPropertyRates'));
0 ignored issues
show
The parameter $request is not used and could be removed. ( Ignorable by Annotation )

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

16
Route::get('/properties/get-property-rates', fn (/** @scrutinizer ignore-unused */ NovaRequest $request) => inertia('NovaIprosoftwareApiPropertiesGetPropertyRates'));

This check looks for parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
17
Route::get('/properties/get-property-custom-rates', fn (NovaRequest $request) => inertia('NovaIprosoftwareApiPropertiesGetPropertyCustomRates'));
0 ignored issues
show
The parameter $request is not used and could be removed. ( Ignorable by Annotation )

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

17
Route::get('/properties/get-property-custom-rates', fn (/** @scrutinizer ignore-unused */ NovaRequest $request) => inertia('NovaIprosoftwareApiPropertiesGetPropertyCustomRates'));

This check looks for parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
18
Route::get('/properties/get-property-extras', fn (NovaRequest $request) => inertia('NovaIprosoftwareApiPropertiesGetPropertyExtras'));
0 ignored issues
show
The parameter $request is not used and could be removed. ( Ignorable by Annotation )

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

18
Route::get('/properties/get-property-extras', fn (/** @scrutinizer ignore-unused */ NovaRequest $request) => inertia('NovaIprosoftwareApiPropertiesGetPropertyExtras'));

This check looks for parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
19
Route::get('/properties/properties-offers', fn (NovaRequest $request) => inertia('NovaIprosoftwareApiPropertiesGetPropertyOffers'));
0 ignored issues
show
The parameter $request is not used and could be removed. ( Ignorable by Annotation )

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

19
Route::get('/properties/properties-offers', fn (/** @scrutinizer ignore-unused */ NovaRequest $request) => inertia('NovaIprosoftwareApiPropertiesGetPropertyOffers'));

This check looks for parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
20
21
Route::get('/bookings/index', fn (NovaRequest $request) => inertia('NovaIprosoftwareApiBookingsIndex'));
0 ignored issues
show
The parameter $request is not used and could be removed. ( Ignorable by Annotation )

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

21
Route::get('/bookings/index', fn (/** @scrutinizer ignore-unused */ NovaRequest $request) => inertia('NovaIprosoftwareApiBookingsIndex'));

This check looks for parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
22