Skip to content

Latest commit

 

History

History
66 lines (47 loc) · 1.13 KB

phpdoc_types.rst

File metadata and controls

66 lines (47 loc) · 1.13 KB

Rule phpdoc_types

The correct case must be used for standard PHP types in PHPDoc.

Configuration

groups

Type groups to fix.

Allowed values: a subset of ['simple', 'alias', 'meta']

Default value: ['simple', 'alias', 'meta']

Examples

Example #1

Default configuration.

--- Original
+++ New
 <?php
 /**
- * @param STRING|String[] $bar
+ * @param string|string[] $bar
  *
- * @return inT[]
+ * @return int[]
  */

Example #2

With configuration: ['groups' => ['simple', 'alias']].

--- Original
+++ New
 <?php
 /**
- * @param BOOL $foo
+ * @param bool $foo
  *
  * @return MIXED
  */

Rule sets

The rule is part of the following rule sets:

@PhpCsFixer

Using the @PhpCsFixer rule set will enable the phpdoc_types rule with the default config.

@Symfony

Using the @Symfony rule set will enable the phpdoc_types rule with the default config.