mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-05-11 20:21:16 +00:00
do not use 'var' anymore
This commit is contained in:
parent
efcb0438e6
commit
7bd6da1dcb
|
@ -26,17 +26,17 @@ class LetoDMS_Core_Object { /* {{{ */
|
|||
/**
|
||||
* @var integer unique id of object
|
||||
*/
|
||||
var $_id;
|
||||
protected $_id;
|
||||
|
||||
/**
|
||||
* @var array list of attributes
|
||||
*/
|
||||
var $_attributes;
|
||||
protected $_attributes;
|
||||
|
||||
/**
|
||||
* @var object back reference to document management system
|
||||
*/
|
||||
var $_dms;
|
||||
public $_dms;
|
||||
|
||||
function LetoDMS_Core_Object($id) { /* {{{ */
|
||||
$this->_id = $id;
|
||||
|
|
Loading…
Reference in New Issue
Block a user