From c4cc8595d66d73d11781bf781fcdff98f9a4054e Mon Sep 17 00:00:00 2001 From: ArnabChatterjee20k Date: Wed, 3 Dec 2025 22:08:05 +0530 Subject: [PATCH] removed redundant static realtime --- app/realtime.php | 6 ------ 1 file changed, 6 deletions(-) diff --git a/app/realtime.php b/app/realtime.php index f924d4ab0f..3e575b4439 100644 --- a/app/realtime.php +++ b/app/realtime.php @@ -204,12 +204,6 @@ if (!function_exists('getRealtime')) { return $ctx['getRealtime']; } - static $realtime = null; - - if ($realtime !== null) { - return $realtime; - } - return $ctx['getRealtime'] = new Realtime(); } }