Shift the boring, repetitive review work to an automated tool, and during your human reviews focus on the business logic, or semantics that no automated tool can analyze.
It has been a bit more than a month since the initial release of the Review system, and there has been quite a number of improvements, bug fixes, and new cool features since then.
Let’s take a look at the most notable ones.
With the arrival of Travis, you can add continuous integration to all of your PHP projects in the blink of eye. It not only has helped increase code quality, but also made the life of library maintainers a lot easier by providing build information directly in pull requests and thereby decreasing the feedback loop tremendously.
However, Travis suffers from one inherent weakness which it cannot overcome.
The Symfony2 Dependency Injection container has already offered ways to inject dependencies into Doctrine repositories, but they always required boilerplate code, and you could not follow the Doctrine way of retrieving repositories. This is not the case anymore.
Just recently, we have added support for asset variables to Assetic. Asset variables are very useful if you need to produce different outputs for the same asset. This can for example be leveraged to make your Javascript assets i18n ready.
If you have followed the Symfony2 development, then you know that we had a feature at some point where you could secure individual controller actions in the access_control config section. Due to some implementation details that did not work reliably though, so we had to remove it.