Skip to content

Commit 92423e7

Browse files
committed
fixed CS
1 parent a7fb8c4 commit 92423e7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ protected function normalizeValue($value)
257257
if (array_keys($v) === array('value')) {
258258
$v = $v['value'];
259259
if ($this->prototype instanceof ArrayNode && ($children = $this->prototype->getChildren()) && array_key_exists('value', $children)) {
260-
$valuePrototype = current($this->valuePrototypes) ?: clone($children['value']);
260+
$valuePrototype = current($this->valuePrototypes) ?: clone $children['value'];
261261
$valuePrototype->parent = $this;
262262
$originalClosures = $this->prototype->normalizationClosures;
263263
if (is_array($originalClosures)) {

0 commit comments

Comments
 (0)