Skip to content

Commit 0f46154

Browse files
yoeunesnicolas-grekas
authored andcommitted
[Translation] Remove an unused argument passed to parseNode() method
1 parent 7d843af commit 0f46154

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

PseudoLocalizationTranslator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ private function parseNode(\DOMNode $node): array
183183

184184
$parts[] = [false, false, '>'];
185185

186-
$parts = array_merge($parts, $this->parseNode($childNode, $parts));
186+
$parts = array_merge($parts, $this->parseNode($childNode));
187187

188188
$parts[] = [false, false, '</'.$childNode->tagName.'>'];
189189
}

0 commit comments

Comments
 (0)