From 92d636087f803ab012bc52aa284d49bbedd9269b Mon Sep 17 00:00:00 2001 From: Kristijan <470003+eldair@users.noreply.github.com> Date: Thu, 23 Jan 2025 13:30:48 +0100 Subject: [PATCH] Update configs.php Fixes config items incorectlly set as `string` due to `'array(...)'` value passed to `gettype` instead of real array --- php-templates/configs.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/php-templates/configs.php b/php-templates/configs.php index 9f6c4be3e..e292ba77b 100644 --- a/php-templates/configs.php +++ b/php-templates/configs.php @@ -72,7 +72,7 @@ function vsCodeGetConfigValue($value, $key, $configPaths) $key = collect(explode('.', $key)); $key->pop(); $key = $key->implode('.'); - $value = 'array(...)'; + $value = []; } $nextKey = $keysToFind->shift();