Antoine Sledge

Results 14 comments of Antoine Sledge

I think this link may work... https://github.com/anther/php-activerecord/tree/relationship_custom_foreign_keys You'll need to install phpunit: http://www.phpunit.de/manual/3.8/en/installation.html and get it running. If you use eclipse's PDT or aptana you can install a gui for...

I can see an improvement would be to update the API to allow `return static::scoped($options_array)`. That way everyone can directly avoid needing to use the "new" syntax with `->where`, `->limit`,...

@gsterjov Completely an oversight and it makes sense for joins to be appended. Glad the rest of it is working well for you though :). @al-the-x Is the breaking of...

As an update, I noticed that I would frequently call scopes with ``` foreach(Company::validCompanies()->all() as $company) { //Things } ``` So I added the `IteratorAggregate` interface to `Scope`. This even...