Looks like it incorrectly counts the needed whitespace indentation around use statements now. ```php use TransactionTrait; use PermissionAwareTrait; ``` is wrongly fixed to ```php use TransactionTrait; use PermissionAwareTrait; ``` Note that the extra newline didnt have any noise whitespace, it was really just an empty one.