phpdoc_var_annotation_correct_order
@var and @type annotations must have type and name in the correct order.
@var
@type
--- Original +++ New <?php -/** @var $foo int */ +/** @var int $foo */ $foo = 2 + 2;
The rule is part of the following rule set:
@PhpCsFixer