I have the latest Emacs and php-mode setup and this code does not get indented correctly
$app->group('/route', function () use ($app) {
echo 'hello';
});
Instead it looks like this
$app->group('/route', function () use ($app) {
echo 'hello';
});
Note both the last line and that it indents the echo
with 8 spaces instead of 4.
I've tried M-x php-enable-psr2-coding-style
but it still doesn't work.