From 56731a5cb9518544172cc0630411e1dd88126b1d Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Fri, 28 Oct 2016 16:17:45 +0800 Subject: [PATCH] CodeDoc/Data/Var.php --- CodeDoc/Data/Var.php | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 CodeDoc/Data/Var.php diff --git a/CodeDoc/Data/Var.php b/CodeDoc/Data/Var.php new file mode 100644 index 0000000..d80f49c --- /dev/null +++ b/CodeDoc/Data/Var.php @@ -0,0 +1,37 @@ + | +// +----------------------------------------------------------------------+ +// +require_once 'PHP/CodeDoc/Data.php'; +/** +* Class variables data container +* +* @package PHP_CodeDoc +* @access public +* @author Alan Knowles +* +*/ +class PHP_CodeDoc_Data_Var extends PHP_CodeDoc_Data { + var $name; // name of parameter + var $type; // default value + var $visibility; // Not used (always 1) + var $description; // The phpdoc description object + var $isPublic =1; // is it a public variable + var $isConstant = 0; // is it a constant.. +} + +?> \ No newline at end of file -- 2.39.2