-
Notifications
You must be signed in to change notification settings - Fork 157
/
Copy pathConstantsPHPDocFormattingSniff.php
88 lines (77 loc) · 2.35 KB
/
ConstantsPHPDocFormattingSniff.php
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<?php
/**
* Copyright 2019 Adobe
* All Rights Reserved.
*/
declare(strict_types=1);
namespace Magento2\Sniffs\Commenting;
use Magento2\Helpers\Commenting\PHPDocFormattingValidator;
use PHP_CodeSniffer\Sniffs\Sniff;
use PHP_CodeSniffer\Files\File;
/**
* Detects PHPDoc formatting for constants.
*/
class ConstantsPHPDocFormattingSniff implements Sniff
{
/**
* @var PHPDocFormattingValidator
*/
private $PHPDocFormattingValidator;
/**
* Helper initialisation
*/
public function __construct()
{
$this->PHPDocFormattingValidator = new PHPDocFormattingValidator();
}
/**
* @inheritDoc
*/
public function register()
{
return [
T_CONST,
T_STRING
];
}
/**
* @inheritDoc
*/
public function process(File $phpcsFile, $stackPtr)
{
$tokens = $phpcsFile->getTokens();
if ($tokens[$stackPtr]['code'] !== T_CONST
&& !($tokens[$stackPtr]['content'] === 'define' && $tokens[$stackPtr + 1]['code'] === T_OPEN_PARENTHESIS)
) {
return;
}
$constNamePtr = $phpcsFile->findNext(
($tokens[$stackPtr]['code'] === T_CONST) ? T_STRING : T_CONSTANT_ENCAPSED_STRING,
$stackPtr + 1,
null,
false,
null,
true
);
$commentStartPtr = $this->PHPDocFormattingValidator->findPHPDoc($stackPtr, $phpcsFile);
if ($commentStartPtr === -1) {
return;
}
if ($this->PHPDocFormattingValidator->providesMeaning($constNamePtr, $commentStartPtr, $tokens) !== true) {
$phpcsFile->addWarning(
'Constants must have short description if they add information beyond what the constant name supplies.',
$stackPtr,
'MissingConstantPHPDoc'
);
}
if ($this->PHPDocFormattingValidator->hasDeprecatedWellFormatted($commentStartPtr, $tokens) !== true) {
$phpcsFile->addWarning(
'Motivation behind the added @deprecated tag MUST be explained. '
. '@see tag MUST be used with reference to new implementation when code is deprecated '
. 'and there is a new alternative.',
$stackPtr,
'InvalidDeprecatedTagUsage'
);
}
}
}