Skip to content

Commit 187ce9b

Browse files
authored
Update configs.php (#1662)
Fixes config items incorectlly set as `string` due to `'array(...)'` value passed to `gettype` instead of real array
1 parent 6b43ac6 commit 187ce9b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: php-templates/configs.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ function vsCodeGetConfigValue($value, $key, $configPaths)
7272
$key = collect(explode('.', $key));
7373
$key->pop();
7474
$key = $key->implode('.');
75-
$value = 'array(...)';
75+
$value = [];
7676
}
7777

7878
$nextKey = $keysToFind->shift();

0 commit comments

Comments
 (0)