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 50bba47 commit f06415dCopy full SHA for f06415d
PHPCtags.class.php
@@ -317,11 +317,17 @@ public function export($file)
317
}
318
319
$this->setMFile((string) $filename);
320
- $this->mStructs += $this->struct($this->mParser->parse(file_get_contents($this->mFile)), TRUE);
+ $this->mStructs = array_merge(
321
+ $this->mStructs,
322
+ $this->struct($this->mParser->parse(file_get_contents($this->mFile)), TRUE)
323
+ );
324
325
} else {
326
$this->setMFile($file);
327
328
329
330
331
332
return $this->render();
333
0 commit comments