dev-think-one /
nova-iprosoftware-api
| 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 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
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
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
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
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
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
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
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
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
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
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
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
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
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 |
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.