We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a446c0b commit 62979e5Copy full SHA for 62979e5
coder_sniffer/Drupal/Sniffs/Commenting/FunctionCommentSniff.php
@@ -27,8 +27,6 @@ class FunctionCommentSniff implements Sniff
27
/**
28
* A map of invalid data types to valid ones for param and return documentation.
29
*
30
- * cspell:ignore TRUEFALSE
31
- *
32
* @var array<string, string>
33
*/
34
public static $invalidTypes = [
@@ -48,6 +46,7 @@ class FunctionCommentSniff implements Sniff
48
46
'Bool' => 'bool',
49
47
'Int' => 'int',
50
'Integer' => 'int',
+ // cspell:ignore TRUEFALSE
51
'TRUEFALSE' => 'bool',
52
];
53
0 commit comments