From 2466a3d859c2dc22d1a486ee9616795a36d6bd2e Mon Sep 17 00:00:00 2001 From: Lorenzo Yario Date: Sun, 22 Dec 2024 14:15:40 -0600 Subject: [PATCH] 7.4 compatibility --- inc/queue.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/queue.php b/inc/queue.php index a5905c84..7ba255f3 100644 --- a/inc/queue.php +++ b/inc/queue.php @@ -73,7 +73,7 @@ class Queues { }; } - public static function get_queue(array $config, string $name): Queue|false { + public static function get_queue(array $config, string $name) { if (!isset(self::$queues[$name])) { if ($config['queue']['enabled'] == 'fs') { $lock = Locks::get_lock($config, $name);