FIX: UnsavedRelationList did not call its constructor

This resulted in Object extensions not working for it, and methods not existing
where they should have.  It also resulted in poor error messages appearing when
thrown from Object since $this->class was empty since the constructor was never
called in Object.
This commit is contained in:
Jeremy Thomerson 2013-05-24 21:14:41 +00:00
parent 13e632d053
commit 5512d7c0d0

View File

@ -51,6 +51,7 @@ class UnsavedRelationList extends ArrayList {
$this->baseClass = $baseClass;
$this->relationName = $relationName;
$this->dataClass = $dataClass;
parent::__construct();
}
/**