We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da61bc2 commit bb8db66Copy full SHA for bb8db66
app/Providers/AppServiceProvider.php
@@ -24,6 +24,7 @@ public function boot(): void
24
{
25
RateLimiter::for('site', function (Request $request) {
26
return Limit::perMinute(10)->by(
27
+ // @phpstan-ignore-next-line
28
parse_url((string) $request->input('url'), PHP_URL_HOST)
29
);
30
});
0 commit comments