Pascal Baljet

Results 77 comments of Pascal Baljet

Hey, thanks for the PR! Could you undo all the changes that are not part of the limit/offset implementation? It makes it really hard to see what's changed.

Hi Michael, this looks great! This would eliminate some configuration setup while still providing the same functionality. If you would create PR, I'd definitely merge it. Thanks!

Requiring Dusk >= v6.23.0 is fine! I agree with you on IDE support. It's something I find frustrating with macros as well. Maybe you could implement the methods in a...

I've been experimenting with a dedicated `IterableType` class. We could resolve it similar to `not()`, but that might be a bit verbose: ```php type($variable)->iterable()->asArray()->of(User::class); ``` Alternatively we could introduce a...

Maybe something like this: ```php iterable($variable)->as(Collection::class)->of(User::class, 'int'); // or... iterable($variable)->as(Collection::class)->key('int')->value(User::class); ```