From 31e29f7d9c84ed84a10e8d90b30bccaaff807be0 Mon Sep 17 00:00:00 2001 From: mscherer Date: Sun, 4 Jan 2026 05:59:21 +0100 Subject: [PATCH] Fix missing semicolons in configuration.md examples --- docs/sections/configuration.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/sections/configuration.md b/docs/sections/configuration.md index 7c57f230..7573d5c4 100644 --- a/docs/sections/configuration.md +++ b/docs/sections/configuration.md @@ -75,13 +75,13 @@ You may create a file called `app_queue.php` inside your `config` folder (NOT th - Max workers (per server): ```php - $config['Queue']['maxworkers'] = 3 // Defaults to 1 (single worker can be run per server) + $config['Queue']['maxworkers'] = 3; // Defaults to 1 (single worker can be run per server) ``` - Multi-server setup: ```php - $config['Queue']['multiserver'] = true // Defaults to false (single server) + $config['Queue']['multiserver'] = true; // Defaults to false (single server) ``` For multiple servers running either CLI/web separately, or even multiple CLI workers on top, make sure to enable this.