diff --git a/src/AbstractDataObject.php b/src/AbstractDataObject.php index 0063f20..3f0716a 100644 --- a/src/AbstractDataObject.php +++ b/src/AbstractDataObject.php @@ -71,14 +71,6 @@ public function unserialize($serialized) { } } - public function __get($fieldName) { - return $this->getField($fieldName); - } - - public function __set($fieldName, $value) { - return $this->setField($fieldName, $value); - } - // public function __call($method, $arguments) { // if ($this->hasList($method)) { // return $this->getList($method);