We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5eccfe1 commit e1c9afdCopy full SHA for e1c9afd
1 file changed
src/Stefna/Sniffs/Commenting/DocCommentSniff.php
@@ -6,7 +6,14 @@
6
7
class DocCommentSniff extends \PHP_CodeSniffer\Standards\Generic\Sniffs\Commenting\DocCommentSniff
8
{
9
- private const ALLOWED_ONE_LINE_COMMENTS = ['@var', '@type', '@lang', '@noinspection'];
+ private const ALLOWED_ONE_LINE_COMMENTS = [
10
+ '@var',
11
+ '@type',
12
+ '@lang',
13
+ '@noinspection',
14
+ '@use',
15
+ '@phpstan-ignore-next-line',
16
+ ];
17
18
/**
19
* Processes this test, when one of its tokens is encountered.
0 commit comments