We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d541112 commit cc7af7dCopy full SHA for cc7af7d
.github/workflows/docs-configuration-reference/run.php
@@ -41,7 +41,7 @@
41
42
function parseConfigKeys(string $doc, array $config, string $base, array &$missingKeys) {
43
foreach ($config as $key => $value) {
44
- if (!str_contains($doc, $key)) {
+ if (!is_numeric($key) && !str_contains($doc, $key)) {
45
$missingKeys[] = $base . '.' . $key;
46
}
47
if (is_array($value)) {
0 commit comments