Koen Punt

Results 284 comments of Koen Punt

Where is the source of the documentation located?

Added documentation to-do to the description

What about setting it up on readthedocs.org?

@cvanschalkwijk thanks for the merge, but that's a lot of noise for a single commit..

Oh I see what happened. I rebase this branch on master once in a while, and you merged master into it.

@TiGR I have been updating #430 the past few days, and started on an updated documentation (preview here: https://koenpunt.github.io/php-activerecord/api/), so maybe that's something we can release. But for now I've...

As workaround you could use placeholders, and add the values to the conditions. Untested, and pretty hacky, but should work as the query is interpolated as whole.

One of many PR's lingering around.. But instantiate isn't a correct function name, because it's not instantiating anything

`$this->id` evaluates to the same value in both cases? If that's the case I think queries are cached over all models and not model independent..

Definitely should add this, having a `after_destroy` callback in almost all of my models is kinda redundant; ``` php class Column extends ActiveRecord\Model{ static $after_destroy = array( 'destroy_related_data' ); public...