jamesmoss/flywheel

Results->first fails: undefined offset

kevinpeno opened this issue · 2 comments

When a query has a where, the document array offsets aren't reset. This causes first (which directly calls for offset 0) to fail to return the first document. results->first() should call current($this->documents) instead and query->where should create a new array of successful values rather than striping/changing the original.

I had this problem too. A workaround is to call array_values() on the resulting set. I created a pull request for this.

Fixed by #19