weird doctrine overrides
I found a little strange behaviour when trying to override the constructor of a class in the doctrine ORM framework. I have this really small example, a party with guests n:m class Guest extends Doctrine_Record { public function __construct($firstname=null, $lastname=null) { parent::__construct(); if ($firstname) $this->firstname = $firstname; if ($lastname) $this->lastname = $lastname; } public function [...]