aboutsummaryrefslogtreecommitdiff
path: root/engine/lib/users.php
diff options
context:
space:
mode:
authormisja <misja@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-04-08 14:36:39 +0000
committermisja <misja@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-04-08 14:36:39 +0000
commit7a2ae99931f3ecbcfbdb740c96149e41212a2a31 (patch)
tree2825ac73a70ccf14947e962859fd067573e89235 /engine/lib/users.php
parent0945f262bf45c4277c65bd38db52e0d1ea3211c7 (diff)
downloadelgg-7a2ae99931f3ecbcfbdb740c96149e41212a2a31.tar.gz
elgg-7a2ae99931f3ecbcfbdb740c96149e41212a2a31.tar.bz2
Misja Hoebe <misja@curverider.co.uk> Fixing doctags
git-svn-id: https://code.elgg.org/elgg/trunk@420 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/lib/users.php')
-rw-r--r--engine/lib/users.php26
1 files changed, 22 insertions, 4 deletions
diff --git a/engine/lib/users.php b/engine/lib/users.php
index 2447ea93c..2b4f89704 100644
--- a/engine/lib/users.php
+++ b/engine/lib/users.php
@@ -13,8 +13,12 @@
*/
/**
- * @class ElggUser
- * Representation of a "user" in the system.
+ * ElggUser
+ *
+ * Representation of a "user" in the system.
+ *
+ * @package Elgg
+ * @subpackage Core
*/
class ElggUser extends ElggEntity
{
@@ -84,8 +88,22 @@
}
}
}
-
- function __get($name) { return $this->get($name); }
+
+ /**
+ * Class variable getter overloading
+ *
+ * @param string $name
+ * @return mixed
+ */
+ function __get($name) { return $this->get($name); }
+
+ /**
+ * Class variable setter overloading
+ *
+ * @param string $name
+ * @param mixed $value
+ * @return mixed
+ */
function __set($name, $value) { return $this->set($name, $value); }
/**