From 4f0234fff4d3fbb4acef4eb36ab8b2c6ad48e9c0 Mon Sep 17 00:00:00 2001 From: "Jonathan.Wage" Date: Tue, 9 Oct 2007 20:51:42 +0000 Subject: [PATCH] Removed propel style accessors. --- lib/Doctrine/Record.php | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/lib/Doctrine/Record.php b/lib/Doctrine/Record.php index 038b8e1b2..da3ff1427 100644 --- a/lib/Doctrine/Record.php +++ b/lib/Doctrine/Record.php @@ -1558,16 +1558,6 @@ abstract class Doctrine_Record extends Doctrine_Record_Abstract implements Count */ public function __call($method, $args) { - // To support propel style getters/setters - $verb = substr($method, 0, 3); - $field = Doctrine::tableize(substr($method, 3, strlen($method))); - - if ($verb === 'get') { - return $this->$verb($field); - } else if ($verb === 'set') { - return $this->$verb($field, $args[0]); - } - if (($template = $this->_table->getMethodOwner($method)) !== false) { $template->setInvoker($this); return call_user_func_array(array($template, $method), $args);