coding-standard
coding-standard copied to clipboard
Sniff to replace call_user_func(<closure>) with (<closure>)()
For PHP 5 similar code exists:
call_user_func(function () {
...
});
This should be:
(function () {
...
})();