CMIContent Marketing InstituteContent directory

Education · Learning · Online

Phpdoc Inline Tag Normalizer

Education

Rule ``phpdoc_inline_tag_normalizer``

Fixes PHPDoc inline tags.

Configuration

``tags`` ~~~~~~~~

The list of tags to normalize

Allowed types: ``array``

Default value: ``['example', 'id', 'internal', 'inheritdoc', 'inheritdocs', 'link', 'source', 'toc', 'tutorial']``

Examples

Example #1 ~~~~~~~~~~

*Default* configuration.

.. code-block:: diff

--- Original +++ New @@ -1,6 +1,6 @@ <?php /** - * @{TUTORIAL} - * {{ @link }} + * {@TUTORIAL} + * {@link} * @inheritDoc */

Example #2 ~~~~~~~~~~

With configuration: ``['tags' => ['TUTORIAL']]``.

.. code-block:: diff

--- Original +++ New @@ -1,6 +1,6 @@ <?php /** - * @{TUTORIAL} + * {@TUTORIAL} * {{ @link }} * @inheritDoc */

Rule sets

The rule is part of the following rule sets

@PhpCsFixer Using the `@PhpCsFixer <./../../ruleSets/PhpCsFixer.rst>`_ rule set will enable the ``phpdoc_inline_tag_normalizer`` rule with the default config.

@Symfony Using the `@Symfony <./../../ruleSets/Symfony.rst>`_ rule set will enable the ``phpdoc_inline_tag_normalizer`` rule with the default config.

More in Online · More in Learning · More in Education