Configured annotations should be omitted from PHPDoc.
List of annotations to remove, e.g. ["author"]
.
Allowed types: array
Default value: []
With configuration: ['annotations' => ['author']]
.
--- Original
+++ New
<?php
/**
* @internal
- * @author John Doe
*/
function foo() {}
With configuration: ['annotations' => ['package', 'subpackage']]
.
--- Original
+++ New
<?php
/**
* @author John Doe
- * @package ACME API
- * @subpackage Authorization
* @version 1.0
*/
function foo() {}