Closed LeoVie closed 2 years ago
This solves #10
I could think of change the behaviour of entries to returning a nested Arr object instead of returning an Arr object with arrays in it. But I'm not sure, if this would be somehow practical. The expectation in the test would be then
entries
Arr
expect($entries)->toEqual(Arr::make([ Arr::make([7, '🥝']), Arr::make([-1, '🍓']), Arr:make([1, '🍋']), ... ]));
What do you think about it?
thank you @LeoVie amazing Pull Request! I'm going to merge it! Thank you
This solves #10
I could think of change the behaviour of
entries
to returning a nestedArr
object instead of returning anArr
object with arrays in it. But I'm not sure, if this would be somehow practical. The expectation in the test would be thenWhat do you think about it?