We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1fd9de1 commit 3aaff2fCopy full SHA for 3aaff2f
src/Node/StringLiteral.php
@@ -30,7 +30,8 @@ public function getStringContentsText() {
30
$stringContents = "";
31
if (isset($this->startQuote)) {
32
foreach ($this->children as $child) {
33
- $stringContents .= $child->getFullText($this->getFileContents());
+ $contents = $this->getFileContents();
34
+ $stringContents .= $child->getFullText($contents);
35
}
36
} else {
37
// TODO ensure string consistency (all strings should have start / end quote)
0 commit comments