kubawerlos/php-cs-fixer-custom-fixers

Ordered PHPDoc params

Closed this issue · 0 comments

PHPDoc params should be ordered to match params order.

 /**
+ * @param int $foo
  * @param int $bar
- * @param int $foo
  */
function baz($foo, $bar)
 {
     return true;
 }