davidphilip

Results 7 issues of davidphilip

During testing I figured out that `rollback()` also brings back related resources that might've been already deleted and saved (state `root.deleted.saved`). IMO these have to be excluded from the rollback...

So let's say we have a user document which has a property of type Array which holds multiple DocumentReferences: ``` // User { name: 'Fubar', pets: [ '/pets/1', '/pets/2', ]...

As the name states I needed to support this for a project I'm working on as the meta data for pagination doesn't necessarily have to lie in the root of...

I think this package is not compatible with L5 yet. Do you plan to update?

In my case I'm calling this: ``` $club->members->each(function($member) { $member->pivot->confirmed = true; $member->pivot->admin = true; $member->pivot->save(); }); ``` resulting in this error: ``` file: "/Applications/XAMPP/xamppfiles/htdocs/agilitybase/vendor/j42/laravel-firebase/src/j42/LaravelFirebase/Client.php" line: 253 message: "Invalid model...

My take on #10. Basically the only way to make currying work for me was to clean the args by some kind of blacklist behaviour. I added this which is...