mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-05-13 13:11:31 +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 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;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user