From 2a62d8dd8b1c7ff6cb2b064d298254b76898bea0 Mon Sep 17 00:00:00 2001 From: Ahmed Alaa <92916738+AhmedAlaa4611@users.noreply.github.com> Date: Wed, 20 Aug 2025 12:13:52 +0300 Subject: [PATCH] Format --- queues.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/queues.md b/queues.md index 8c94fa8301..12931cb2a6 100644 --- a/queues.md +++ b/queues.md @@ -537,7 +537,7 @@ In the example above, we defined an hourly rate limit; however, you may easily d return Limit::perMinute(50)->by($job->user->id); ``` -Once you have defined your rate limit, you may attach the rate limiter to your job using the `Illuminate\Queue\Middleware\RateLimited` middleware. Each time the job exceeds the rate limit, this middleware will release the job back to the queue with an appropriate delay based on the rate limit duration. +Once you have defined your rate limit, you may attach the rate limiter to your job using the `Illuminate\Queue\Middleware\RateLimited` middleware. Each time the job exceeds the rate limit, this middleware will release the job back to the queue with an appropriate delay based on the rate limit duration: ```php use Illuminate\Queue\Middleware\RateLimited;