Antoine Sledge
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';...
I want to start a discussion on adding scopes to PHPActiveRecord! This is a branch that I started working on earlier this year after discovering GH-252 by @CarlosBonetti. He began...