mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-05-12 12:41:30 +00:00
do not use 'var' anymore
This commit is contained in:
parent
d289750877
commit
2d628ef11b
|
@ -27,21 +27,21 @@ class LetoDMS_Core_Group {
|
||||||
*
|
*
|
||||||
* @var integer
|
* @var integer
|
||||||
*/
|
*/
|
||||||
var $_id;
|
protected $_id;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The name of the user group
|
* The name of the user group
|
||||||
*
|
*
|
||||||
* @var string
|
* @var string
|
||||||
*/
|
*/
|
||||||
var $_name;
|
protected $_name;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Back reference to DMS this user group belongs to
|
* Back reference to DMS this user group belongs to
|
||||||
*
|
*
|
||||||
* @var object
|
* @var object
|
||||||
*/
|
*/
|
||||||
var $_dms;
|
protected $_dms;
|
||||||
|
|
||||||
function LetoDMS_Core_Group($id, $name, $comment) { /* {{{ */
|
function LetoDMS_Core_Group($id, $name, $comment) { /* {{{ */
|
||||||
$this->_id = $id;
|
$this->_id = $id;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user