I just tested a fix in dev-master (4.8.0) and noticed a new bug in `SlevomatCodingStandard.PHP.UselessParentheses.UselessParentheses`. Before: ```php $response = (new Response()) ->withStatus(200) ->withAddedHeader('Content-Type', 'text/plain'); ``` After: ```php $response = new Response() // <--- Removed parentheses causes PHP Parse error: ->withStatus(200) // syntax error, unexpected '->' (T_OBJECT_OPERATOR) ->withAddedHeader('Content-Type', 'text/plain'); ```