My background is in Propel, so I was hoping it would be a simple thing to override a magical getter in a Doctrine_Record (sfDoctrineRecord), but I\'m getting either a Segfault o
Configure Doctrine:
$manager->setAttribute(Doctrine::ATTR_AUTO_ACCESSOR_OVERRIDE, true);
then:
public function getAnything() { return $this->_get('anything'); } public function setAnything() { return $this->_set('anything', $value); }