8000 Allow dots in Config node names · symfony/symfony@d5798f5 · GitHub
[go: up one dir, main page]

Skip to content

Commit d5798f5

Browse files
committed
Allow dots in Config node names
1 parent 85ae039 commit d5798f5

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/Symfony/Component/Config/Definition/BaseNode.php

Lines changed: 0 additions & 4 deletions
< 67D8 td data-grid-cell-id="diff-8b4f9df0a0241a8a1282a47ab3baab907648d1f6bc855bacef981909d9534d08-43-43-2" data-line-anchor="diff-8b4f9df0a0241a8a1282a47ab3baab907648d1f6bc855bacef981909d9534d08R43" data-selected="false" role="gridcell" style="background-color:var(--bgColor-default);padding-right:24px" tabindex="-1" valign="top" class="focusable-grid-cell diff-text-cell right-side-diff-cell left-side">
public function __construct($name, NodeInterface $parent = null)
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,6 @@ abstract class BaseNode implements NodeInterface
4242
*/
4343
4444
{
45-
if (false !== strpos($name, '.')) {
46-
throw new \InvalidArgumentException('The name must not contain ".".');
47-
}
48-
4945
$this->name = $name;
5046
$this->parent = $parent;
5147
}

0 commit comments

Comments
 (0)
0