Antoine Sledge
Results
2
issues of
Antoine Sledge
## The Problem If there's an eager load with a join, the relationships for "repeat" entries are not added to $__relationships, thus causing a lazy load to happen. I'm making...
This patch adds single table inheritance the same way that Yii framework goes about it. http://www.yiiframework.com/wiki/198/single-table-inheritance. ``` /** Here's what we want */ $book = new Book(); $book->name = 'AwesomeBook';...