From eb19b60e2ac0bc6ea40f9f600f94a7d6d6481c8d Mon Sep 17 00:00:00 2001 From: Ahmed Alaa <92916738+AhmedAlaa4611@users.noreply.github.com> Date: Fri, 22 Aug 2025 22:06:11 +0300 Subject: [PATCH] [12.x] Swoole proper link --- helpers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helpers.md b/helpers.md index e31bfd77ca..4715894ba6 100644 --- a/helpers.md +++ b/helpers.md @@ -3241,7 +3241,7 @@ defer(fn () => Metrics::reportOrder($order))->always(); ``` > [!WARNING] -> If you have the **swoole** PHP extension installed, Laravel's `defer` function may conflict with Swoole's own global `defer` function, leading to web server errors. Make sure you call Laravel's `defer` helper by explicitly namespacing it: `use function Illuminate\Support\defer;` +> If you have the [Swoole PHP extension](https://www.php.net/manual/en/book.swoole.php) installed, Laravel's `defer` function may conflict with Swoole's own global `defer` function, leading to web server errors. Make sure you call Laravel's `defer` helper by explicitly namespacing it: `use function Illuminate\Support\defer;` #### Cancelling Deferred Functions