Skip to content

Commit 62f0b07

Browse files
committed
Merge branch '6.4' into 7.3
* 6.4: fix test setup [Validator] Review Turkish translations [Validator] Review Croatian translations [Validator] Review translations for Polish (pl) use the empty string instead of null as an array offset Review translations for Chinese (zh_TW) [Serializer] Adjust ObjectNormalizerTest for the accessor method changes from #61097
2 parents 98bf15e + 3f1e308 commit 62f0b07

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Definition/Builder/ArrayNodeDefinition.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,7 @@ public function normalizeKeys(bool $bool): static
347347

348348
public function append(NodeDefinition $node): static
349349
{
350-
$this->children[$node->name] = $node->setParent($this);
350+
$this->children[$node->name ?? ''] = $node->setParent($this);
351351

352352
return $this;
353353
}

0 commit comments

Comments
 (0)