Fork me on GitHub
a Sensio Labs Product

15 Keys (v3.52.1) edition

Rule general_phpdoc_annotation_remove

Configured annotations should be omitted from PHPDoc.

Configuration

annotations

List of annotations to remove, e.g. ["author"].

Allowed types: array

Default value: []

case_sensitive

Should annotations be case sensitive.

Allowed types: bool

Default value: true

Examples

Example #1

With configuration: ['annotations' => ['author']].

--- Original
+++ New
 <?php
 /**
  * @internal
- * @author John Doe
  * @AuThOr Jane Doe
  */
 function foo() {}

Example #2

With configuration: ['annotations' => ['author'], 'case_sensitive' => false].

--- Original
+++ New
 <?php
 /**
  * @internal
- * @author John Doe
- * @AuThOr Jane Doe
  */
 function foo() {}

Example #3

With configuration: ['annotations' => ['package', 'subpackage']].

--- Original
+++ New
 <?php
 /**
  * @author John Doe
- * @package ACME API
- * @subpackage Authorization
  * @version 1.0
  */
 function foo() {}

References

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