========================== Rule ``phpdoc_separation`` ========================== Annotations in PHPDoc should be grouped together so that annotations of the same type immediately follow each other. Annotations of a different type are separated by a single blank line. Configuration ------------- ``groups`` ~~~~~~~~~~ Sets of annotation types to be grouped together. Use ``*`` to match any tag character. Allowed types: ``string[][]`` Default value: ``[['deprecated', 'link', 'see', 'since'], ['author', 'copyright', 'license'], ['category', 'package', 'subpackage'], ['property', 'property-read', 'property-write']]`` ``skip_unlisted_annotations`` ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Whether to skip annotations that are not listed in any group. Allowed types: ``bool`` Default value: ``false`` Examples -------- Example #1 ~~~~~~~~~~ *Default* configuration. .. code-block:: diff --- Original +++ New [['deprecated', 'link', 'see', 'since'], ['author', 'copyright', 'license'], ['category', 'package', 'subpackage'], ['property', 'property-read', 'property-write'], ['param', 'return']]]``. .. code-block:: diff --- Original +++ New [['author', 'throws', 'custom'], ['return', 'param']]]``. .. code-block:: diff --- Original +++ New [['ORM\\*'], ['Assert\\*']]]``. .. code-block:: diff --- Original +++ New true]``. .. code-block:: diff --- Original +++ New `_ - `@Symfony <./../../ruleSets/Symfony.rst>`_