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