do not use 'var' anymore

This commit is contained in:
steinm 2013-01-24 08:23:24 +00:00
parent efcb0438e6
commit 7bd6da1dcb

View File

@ -26,17 +26,17 @@ class LetoDMS_Core_Object { /* {{{ */
/** /**
* @var integer unique id of object * @var integer unique id of object
*/ */
var $_id; protected $_id;
/** /**
* @var array list of attributes * @var array list of attributes
*/ */
var $_attributes; protected $_attributes;
/** /**
* @var object back reference to document management system * @var object back reference to document management system
*/ */
var $_dms; public $_dms;
function LetoDMS_Core_Object($id) { /* {{{ */ function LetoDMS_Core_Object($id) { /* {{{ */
$this->_id = $id; $this->_id = $id;