Debugging collection chains
A couple of weeks ago I published a blog post on how you can easily debug collections using a dd
macro. Meanwhile my company released a package that contains that macro. In this post I'd like to introduce a new dump
macro, recently introduced in the package, that makes debugging collection chain even easier.
Here's what the dump
macro itself looks like.
Collection::macro('dump', function () {
Collection::make(func_get_args())
->push($this)
->each(function ($item) {
(new Dumper)->dump($item);
});
return $this;
});
So what the macro basically does is dumping any argument you give it to the screen together with the collection itself. The entire collection is returned, so you can further chain it. Sounds a little abstract, no? Easier said: this macro can be used to dump all the steps in your collection chain to the screen.
Let's see it in action. Take a look this collection chain:
collect([1,2,3])
->dump('original collection')
->map(function(int $number) {
return $number * 2;
})
->dump('multiplied by two')
->filter(function(int $number) {
return $number > 3;
})
->dump('filtered higher than three')
->dd();
Executing that chain results in this being displayed on the screen.
Displaying every transformation in the chain will make it much easier to find a potential bug. Hope you like it!
What are your thoughts on "Debugging collection chains"?