Details
Description
Actually I'm not sure how this issue could implicate on any behavior.
I was debbuging a project and I found this invalid reference:
Relation/Parser.php
public function bind($name, $options = array()) { //... if ($this->hasRelation($alias)) { unset($this->relations[$alias]); // Doesn't exist, the right property is $this->_relations unset($this->_pending[$alias]); } //... }
I've started using Doctrine recently, so I think it's better somebody more expert take a look in that.