phpdoc_param_order
Orders all @param annotations in DocBlocks according to method signature.
@param
--- Original +++ New <?php /** * Annotations in wrong order * * @param int $a + * @param array $b * @param Foo $c - * @param array $b */ function m($a, array $b, Foo $c) {}