1
|
|
|
<?php |
2
|
|
|
/** |
3
|
|
|
* PHPCompatibility_Sniffs_PHP_ForbiddenNegativeBitshift. |
4
|
|
|
* |
5
|
|
|
* PHP version 7.0 |
6
|
|
|
* |
7
|
|
|
* @category PHP |
8
|
|
|
* @package PHPCompatibility |
9
|
|
|
* @author Wim Godden <[email protected]> |
10
|
|
|
*/ |
11
|
|
|
|
12
|
|
|
/** |
13
|
|
|
* PHPCompatibility_Sniffs_PHP_ForbiddenNegativeBitshift. |
14
|
|
|
* |
15
|
|
|
* Bitwise shifts by negative number will throw an ArithmeticError in PHP 7.0. |
16
|
|
|
* |
17
|
|
|
* @category PHP |
18
|
|
|
* @package PHPCompatibility |
19
|
|
|
* @author Wim Godden <[email protected]> |
20
|
|
|
*/ |
21
|
|
|
class PHPCompatibility_Sniffs_PHP_ForbiddenNegativeBitshiftSniff extends PHPCompatibility_Sniff |
|
|
|
|
22
|
|
|
{ |
23
|
|
|
|
24
|
|
|
/** |
25
|
|
|
* Returns an array of tokens this test wants to listen for. |
26
|
|
|
* |
27
|
|
|
* @return array |
28
|
|
|
*/ |
29
|
|
|
public function register() |
30
|
|
|
{ |
31
|
|
|
return array(T_SR); |
32
|
|
|
|
33
|
|
|
}//end register() |
34
|
|
|
|
35
|
|
|
/** |
36
|
|
|
* Processes this test, when one of its tokens is encountered. |
37
|
|
|
* |
38
|
|
|
* @param PHP_CodeSniffer_File $phpcsFile The file being scanned. |
39
|
|
|
* @param int $stackPtr The position of the current token |
40
|
|
|
* in the stack passed in $tokens. |
41
|
|
|
* |
42
|
|
|
* @return void |
43
|
|
|
*/ |
44
|
|
|
public function process(PHP_CodeSniffer_File $phpcsFile, $stackPtr) |
45
|
|
|
{ |
46
|
|
|
if ($this->supportsAbove('7.0') === false) { |
47
|
|
|
return; |
48
|
|
|
} |
49
|
|
|
|
50
|
|
|
$tokens = $phpcsFile->getTokens(); |
|
|
|
|
51
|
|
|
|
52
|
|
|
$nextNumber = $phpcsFile->findNext(T_LNUMBER, $stackPtr + 1, null, false, null, true); |
53
|
|
|
if($nextNumber === false || ($stackPtr + 1) === $nextNumber) { |
54
|
|
|
return; |
55
|
|
|
} |
56
|
|
|
|
57
|
|
|
$hasMinusSign = $phpcsFile->findNext(T_MINUS, $stackPtr + 1, $nextNumber, false, null, true); |
58
|
|
|
if($hasMinusSign === false) { |
59
|
|
|
return; |
60
|
|
|
} |
61
|
|
|
|
62
|
|
|
$error = 'Bitwise shifts by negative number will throw an ArithmeticError in PHP 7.0'; |
63
|
|
|
$phpcsFile->addError($error, $hasMinusSign); |
64
|
|
|
|
65
|
|
|
}//end process() |
66
|
|
|
|
67
|
|
|
}//end class |
68
|
|
|
|
You can fix this by adding a namespace to your class:
When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.