diff options
author | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-10-31 01:00:01 +0000 |
---|---|---|
committer | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-10-31 01:00:01 +0000 |
commit | aed5a35ed9fa851c96b6e18485188f49de127f1c (patch) | |
tree | 5a3072bcfb3f3060191d744f973c8af1103de2f3 /engine/classes/ElggAnnotation.php | |
parent | 0c70cbd09644c3c38f3cb1a1857ff8b77607c945 (diff) | |
download | elgg-aed5a35ed9fa851c96b6e18485188f49de127f1c.tar.gz elgg-aed5a35ed9fa851c96b6e18485188f49de127f1c.tar.bz2 |
Refs #2597: Pulled __set, __get, __isset magic functions definitions into ElggData
git-svn-id: http://code.elgg.org/elgg/trunk@7163 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/classes/ElggAnnotation.php')
-rw-r--r-- | engine/classes/ElggAnnotation.php | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/engine/classes/ElggAnnotation.php b/engine/classes/ElggAnnotation.php index d99f5fc9a..da43aea23 100644 --- a/engine/classes/ElggAnnotation.php +++ b/engine/classes/ElggAnnotation.php @@ -46,29 +46,6 @@ class ElggAnnotation extends ElggExtender { } /** - * Class member get overloading - * - * @param string $name The name of the value to get - * - * @return mixed - */ - function __get($name) { - return $this->get($name); - } - - /** - * Class member set overloading - * - * @param string $name The name of the value to set - * @param mixed $value The value to set - * - * @return mixed - */ - function __set($name, $value) { - return $this->set($name, $value); - } - - /** * Save this instance * * @return int an object id |