Fork me on GitHub
a Sensio Labs Product

15 Keys Accelerate (v3.54.0) edition

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.

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

Example #2

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

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

Rule sets

The rule is part of the following rule sets:

References

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