8000 fixed CS · symfony/symfony@fb3d92d · GitHub
[go: up one dir, main page]

Skip to content

Commit fb3d92d

Browse files
committed
fixed CS
1 parent bfabad4 commit fb3d92d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/Config/Definition/Builder/ArrayNodeDefinition.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -412,7 +412,7 @@ protected function createNode()
412412

413413
if ($this->default) {
414414
if (!\is_array($this->defaultValue)) {
415-
throw new \InvalidArgumentException($node->getPath().': the default value of an array node has to be an array.');
415+
throw new \InvalidArgumentException(sprintf('%s: the default value of an array node has to be an array.', $node->getPath()));
416416
}
417417

418418
$node->setDefaultValue($this->defaultValue);

0 commit comments

Comments
 (0)
0