CodeDoc/Data/Var.php
authorAlan Knowles <alan@roojs.com>
Fri, 28 Oct 2016 08:17:45 +0000 (16:17 +0800)
committerAlan Knowles <alan@roojs.com>
Fri, 28 Oct 2016 08:17:45 +0000 (16:17 +0800)
CodeDoc/Data/Var.php [new file with mode: 0644]

diff --git a/CodeDoc/Data/Var.php b/CodeDoc/Data/Var.php
new file mode 100644 (file)
index 0000000..d80f49c
--- /dev/null
@@ -0,0 +1,37 @@
+<?php
+
+// +----------------------------------------------------------------------+
+// | PHP Version 4                                                        |
+// +----------------------------------------------------------------------+
+// | Copyright (c) 1997-2002 The PHP Group                                |
+// +----------------------------------------------------------------------+
+// | This source file is subject to version 2.02 of the PHP license,      |
+// | that is bundled with this package in the file LICENSE, and is        |
+// | available at through the world-wide-web at                           |
+// | http://www.php.net/license/2_02.txt.                                 |
+// | If you did not receive a copy of the PHP license and are unable to   |
+// | obtain it through the world-wide-web, please send a note to          |
+// | license@php.net so we can mail you a copy immediately.               |
+// +----------------------------------------------------------------------+
+// | Authors: Alan Knowles <alan@akbkhome.com>                      |
+// +----------------------------------------------------------------------+
+//
+require_once 'PHP/CodeDoc/Data.php';
+/**
+*   Class variables data container
+*
+*   @package  PHP_CodeDoc
+*   @access   public
+*   @author   Alan Knowles <alan@akbkhome.com>
+*
+*/
+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