From 187ce9beeba7149d44fcdec89fe74fb36c6e6156 Mon Sep 17 00:00:00 2001 From: Kristijan <470003+eldair@users.noreply.github.com> Date: Thu, 23 Jan 2025 18:56:10 +0100 Subject: [PATCH] Update configs.php (#1662) 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 9f6c4be..e292ba7 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();