From 49c144ab816213bf5a912cb6c2b424f194ef2f23 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=BCnther=20Debrauwer?= Date: Fri, 6 Jun 2025 17:08:42 +0200 Subject: [PATCH 1/2] Remove warning (#10476) --- routing.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/routing.md b/routing.md index a0273378b32..a990c0521e9 100644 --- a/routing.md +++ b/routing.md @@ -544,9 +544,6 @@ Route::domain('{account}.example.com')->group(function () { }); ``` -> [!WARNING] -> In order to ensure your subdomain routes are reachable, you should register subdomain routes before registering root domain routes. This will prevent root domain routes from overwriting subdomain routes which have the same URI path. - ### Route Prefixes From 857045719a325ea4061cfe6cc9c255d8a6ee114c Mon Sep 17 00:00:00 2001 From: Ahmed Alaa <92916738+AhmedAlaa4611@users.noreply.github.com> Date: Sun, 17 Aug 2025 23:46:12 +0300 Subject: [PATCH 2/2] Make QueueBusy event consistent with other queue events (#10742) --- queues.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/queues.md b/queues.md index 48e185a88ce..f63685bb7a7 100644 --- a/queues.md +++ b/queues.md @@ -2350,7 +2350,7 @@ public function boot(): void Event::listen(function (QueueBusy $event) { Notification::route('mail', 'dev@example.com') ->notify(new QueueHasLongWaitTime( - $event->connection, + $event->connectionName, $event->queue, $event->size ));