From cf5350b2e5fd972b839e9a75ad0c04efb5826cca Mon Sep 17 00:00:00 2001 From: Andrey Ryabin Date: Mon, 13 Feb 2023 22:34:45 +0500 Subject: [PATCH] noOutput option to disable buffering --- src/main/Cache.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/Cache.php b/src/main/Cache.php index b5ecbf4..7158288 100644 --- a/src/main/Cache.php +++ b/src/main/Cache.php @@ -936,6 +936,7 @@ protected function getBitrixCache(): BitrixCache if (is_null($this->bitrixCache)) { $this->bitrixCache = $this->getBitrixApplication() ->getCache(); + $this->bitrixCache->noOutput(); } return $this->bitrixCache;