for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Providers;
use Illuminate\Cache\RateLimiting\Limit;
use Illuminate\Foundation\Support\Providers\RouteServiceProvider as ServiceProvider;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\RateLimiter;
use Illuminate\Support\Facades\Route;
class RouteServiceProvider extends ServiceProvider
{
/**
* The path to the "home" route for your application.
*
* This is used by Laravel authentication to redirect users after login.
* @var string
*/
public const HOME = '/home';
* If specified, this namespace is automatically applied to your controller routes.
* In addition, it is set as the URL generator's root namespace.
protected $namespace = 'App\Http\Controllers';
* Define your route model bindings, pattern filters, etc.
* @return void
public function boot()
$this->configureRateLimiting();
$this->routes(function () {
Route::middleware('web')
->group(base_path('routes/web.php'));
Route::prefix('api')
->middleware('api')
->group(base_path('routes/api.php'));
});
}
* Configure the rate limiters for the application.
protected function configureRateLimiting()
RateLimiter::for('api', function (Request $request) {
$request
If this is a false-positive, you can also ignore this issue in your code via the ignore-unused annotation
ignore-unused
RateLimiter::for('api', function (/** @scrutinizer ignore-unused */ Request $request) {
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.
return Limit::perMinute(60);
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.