Menu

[r312]: / trunk / src / PHPCheckstyle / VariableInfo.php  Maximize  Restore  History

Download this file

23 lines (18 with data), 430 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
namespace PHPCheckstyle;
/**
* Info about a variable in the code.
*
* This object is stored in the "_variables" array.
*
* @package classes
* @SuppressWarnings checkUnusedVariables
*/
class VariableInfo {
// The variable name
var $name = null;
// The line of first appareason of the variable
var $line;
// Indicate the the variable have been used at least once.
var $isUsed = false;
}
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.