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.
2 parents f44f2b9 + 424d36b commit b0264e1Copy full SHA for b0264e1
src/Parser.php
@@ -188,9 +188,9 @@ protected function addData($parser, $data)
188
//Having a path data entry means at least 1 callback is interested in
189
//the data. Loop through each path here and, if inside that path, add
190
//the data
191
- foreach ($this->pathData as $key => $val) {
+ foreach ($this->pathData as $key => &$val) {
192
if (\strpos($this->currentPath, $key) !== false) {
193
- $this->pathData[$key] .= $data;
+ $val .= $data;
194
}
195
196
0 commit comments