PHP
Laravels Command Bus
In Laravel 5.1 the Command Bus was replaced with Dispatchable Jobs, we can still use them but let us also look at how to add a Command Bus. Read more
In Laravel 5.1 the Command Bus was replaced with Dispatchable Jobs, we can still use them but let us also look at how to add a Command Bus. Read more
Here’s a cool feature the Chrome team is working on. It’s already available in Canary.
Of all of the design patterns you could use in your code, the adapter pattern is one of my all time favourites. It allows you to abstract the implementation to an adapter that implements an Read more…
I get asked about API response testing a lot, how should you do it, and where to start. I have a general rule when it comes to testing APIs, and that rule is: “test your Read more…
Here’s a new blog post by our designer Nick on how he’s revamping the looks of Oh Dear. Read more
“Were previous generations really better off because they merely watched TV, or listened to radio, or read books? All of these activities are passive. All of these activities involve letting external thoughts temporarily replace your Read more…
In a typical Laravel application we are very used to doing things in a certain way, by the book as they say. However there comes a point in the applications lifetime that it is going Read more…
Here’s a small interview with the new developers that will receive funding via The PHP Foundation Read more
The Middleware Pattern allows you to easily change the input and output of an action; one layer at a time. Read more