From 7bd6da1dcb5fab8b0a9768c95e23ae026ba3e534 Mon Sep 17 00:00:00 2001 From: steinm Date: Thu, 24 Jan 2013 08:23:24 +0000 Subject: [PATCH] do not use 'var' anymore --- LetoDMS_Core/Core/inc.ClassObject.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/LetoDMS_Core/Core/inc.ClassObject.php b/LetoDMS_Core/Core/inc.ClassObject.php index 1e51c2082..ae830d3b8 100644 --- a/LetoDMS_Core/Core/inc.ClassObject.php +++ b/LetoDMS_Core/Core/inc.ClassObject.php @@ -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;