forked from pfrenssen/coder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDocCommentLongArraySyntaxSniff.php
More file actions
73 lines (65 loc) · 2.39 KB
/
DocCommentLongArraySyntaxSniff.php
File metadata and controls
73 lines (65 loc) · 2.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<?php
/**
* Ensures @code annotations in doc blocks don't contain long array syntax.
*
* @category PHP
* @package PHP_CodeSniffer
* @link http://pear.php.net/package/PHP_CodeSniffer
*/
namespace Drupal\Sniffs\Commenting;
use PHP_CodeSniffer\Files\File;
use PHP_CodeSniffer\Sniffs\Sniff;
/**
* Ensures @code annotations in doc blocks don't contain long array syntax.
*
* @category PHP
* @package PHP_CodeSniffer
* @link http://pear.php.net/package/PHP_CodeSniffer
*/
class DocCommentLongArraySyntaxSniff implements Sniff
{
/**
* Returns an array of tokens this test wants to listen for.
*
* @return array<int|string>
*/
public function register()
{
return [T_DOC_COMMENT_OPEN_TAG];
}
/**
* Processes this test, when one of its tokens is encountered.
*
* @param \PHP_CodeSniffer\Files\File $phpcsFile The file being scanned.
* @param int $stackPtr The position of the current token
* in the stack passed in $tokens.
*
* @return void
*/
public function process(File $phpcsFile, $stackPtr)
{
$tokens = $phpcsFile->getTokens();
$commentEnd = $phpcsFile->findNext(T_DOC_COMMENT_CLOSE_TAG, ($stackPtr + 1));
// Look for @code annotations.
$codeEnd = $stackPtr;
do {
$codeStart = $phpcsFile->findNext(T_DOC_COMMENT_TAG, ($codeEnd + 1), $commentEnd, false, '@code');
if ($codeStart !== false) {
$codeEnd = $phpcsFile->findNext(T_DOC_COMMENT_TAG, ($codeStart + 1), $commentEnd, false, '@endcode');
// If the code block never ends then simply ignore this
// docblock, it is probably malformed.
if ($codeEnd === false) {
break;
} else {
// Check for long array syntax use inside this @code annotation.
for ($i = ($codeStart + 1); $i < $codeEnd; $i++) {
if (preg_match('/\barray\s*\(/', $tokens[$i]['content']) === 1) {
$error = 'Long array syntax must not be used in doc comment code annotations';
$phpcsFile->addError($error, $i, 'DocLongArray');
}
}
}
}
} while ($codeStart !== false);
}
}