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 768c7ad commit 7fd0030Copy full SHA for 7fd0030
PHPCtags.class.php
@@ -274,7 +274,11 @@ private function render($structure)
274
if (empty($struct['name']) || empty($struct['line']) || empty($struct['kind']))
275
return;
276
277
- $str .= $struct['name'];
+ if ($struct['name'] instanceof PHPParser_Node_Expr_Variable ){
278
+ $str .= $struct['name']->name;
279
+ }else{
280
+ $str .= $struct['name'];
281
+ }
282
283
$str .= "\t" . $file;
284
0 commit comments