Skip to content

Commit 5ef29b9

Browse files
committed
Change$mFields to a more proper name $mKinds
1 parent 994791b commit 5ef29b9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

PHPCtags.class.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ class PHPCtags
33
{
44
private $mFile;
55

6-
private $mFields;
6+
private $mKinds;
77

88
private $mParser;
99

@@ -13,7 +13,7 @@ public function __construct($file, $options=array())
1313
{
1414
//@todo Check for existence
1515
$this->mFile = $file;
16-
$this->mFields = array(
16+
$this->mKinds= array(
1717
'c' => 'class',
1818
'm' => 'method',
1919
'f' => 'function',
@@ -180,7 +180,7 @@ private function render($structs)
180180
#field=K, kind of tag as fullname
181181
if (in_array('K', $this->mOptions['fields'])) {
182182
in_array('z', $this->mOptions['fields']) && $str .= "kind:";
183-
$str .= "\t" . $this->mFields[$struct['kind']];
183+
$str .= "\t" . $this->mKinds[$struct['kind']];
184184
}
185185

186186
#field=n

0 commit comments

Comments
 (0)