Fork me on GitHub
a Sensio Labs Product

15 Keys Accelerate (v3.54.0) edition

Rule phpdoc_param_order

Orders all @param annotations in DocBlocks according to method signature.

Examples

Example #1

--- 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) {}

References

The test class defines officially supported behaviour. Each test case is a part of our backward compatibility promise.