Skip to content

Commit

Permalink
Merge pull request #46 from PHPCSStandards/feature/generic-incrementd…
Browse files Browse the repository at this point in the history
…ecrementspacing-handle-more-cases

Generic/IncrementDecrementSpacing: handle more situations
  • Loading branch information
jrfnl authored Dec 5, 2023
2 parents ac6abf6 + ad5421c commit 4aafcb3
Show file tree
Hide file tree
Showing 5 changed files with 71 additions and 12 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,8 @@ The file documents changes to the PHP_CodeSniffer project.
- Generic.PHP.RequireStrictTypes has a new warning for when there is a declare statement, but the strict_types directive is set to 0
- The warning can be turned off by excluding the Generic.PHP.RequireStrictTypes.Disabled error code
- Thanks to Juliette Reinders Folmer (@jrfnl) for the patch
- Generic.WhiteSpace.IncrementDecrementSpacing now detects more spacing issues
- Thanks to Juliette Reinders Folmer (@jrfnl) for the patch
- PSR2.Classes.PropertyDeclaration now enforces that the readonly modifier comes after the visibility modifier
- PSR2 and PSR12 do not have documented rules for this as they pre-date the readonly modifier
- PSR-PER has been used to confirm the order of this keyword so it can be applied to PSR2 and PSR12 correctly
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ public function process(File $phpcsFile, $stackPtr)
// Is this a pre-increment/decrement ?
$nextNonEmpty = $phpcsFile->findNext(Tokens::$emptyTokens, ($stackPtr + 1), null, true);
if ($nextNonEmpty !== false
&& (($phpcsFile->tokenizerType === 'PHP' && $tokens[$nextNonEmpty]['code'] === T_VARIABLE)
&& (($phpcsFile->tokenizerType === 'PHP'
&& ($tokens[$nextNonEmpty]['code'] === T_VARIABLE || $tokens[$nextNonEmpty]['code'] === T_STRING))
|| ($phpcsFile->tokenizerType === 'JS' && $tokens[$nextNonEmpty]['code'] === T_STRING))
) {
if ($nextNonEmpty === ($stackPtr + 1)) {
Expand Down Expand Up @@ -116,7 +117,10 @@ public function process(File $phpcsFile, $stackPtr)
// Is this a post-increment/decrement ?
$prevNonEmpty = $phpcsFile->findPrevious(Tokens::$emptyTokens, ($stackPtr - 1), null, true);
if ($prevNonEmpty !== false
&& (($phpcsFile->tokenizerType === 'PHP' && $tokens[$prevNonEmpty]['code'] === T_VARIABLE)
&& (($phpcsFile->tokenizerType === 'PHP'
&& ($tokens[$prevNonEmpty]['code'] === T_VARIABLE
|| $tokens[$prevNonEmpty]['code'] === T_STRING
|| $tokens[$prevNonEmpty]['code'] === T_CLOSE_SQUARE_BRACKET))
|| ($phpcsFile->tokenizerType === 'JS' && $tokens[$prevNonEmpty]['code'] === T_STRING))
) {
if ($prevNonEmpty === ($stackPtr - 1)) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,23 @@ $i /*comment*/ --;
$i++;
$i ++;
$i /*comment*/ ++;

// Handle properties and array access too.
$i['key']++;
$i['key'] ++;
$i['key']['id']++;
$i['key']['id'] ++;

$obj->prop++;
$obj->prop ++;
$obj?->prop ++;

$obj->obj->prop++;
$obj->obj->prop ++;
$obj?->obj->prop ++;

$obj->prop['key']++;
$obj->prop['key'] ++;

--ClassName::$prop;
-- ClassName::$prop;
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,23 @@ $i /*comment*/ --;
$i++;
$i++;
$i /*comment*/ ++;

// Handle properties and array access too.
$i['key']++;
$i['key']++;
$i['key']['id']++;
$i['key']['id']++;

$obj->prop++;
$obj->prop++;
$obj?->prop++;

$obj->obj->prop++;
$obj->obj->prop++;
$obj?->obj->prop++;

$obj->prop['key']++;
$obj->prop['key']++;

--ClassName::$prop;
--ClassName::$prop;
Original file line number Diff line number Diff line change
Expand Up @@ -27,19 +27,32 @@ class IncrementDecrementSpacingUnitTest extends AbstractSniffUnitTest
*/
public function getErrorList($testFile='IncrementDecrementSpacingUnitTest.inc')
{
$errors = [
5 => 1,
6 => 1,
8 => 1,
10 => 1,
13 => 1,
14 => 1,
16 => 1,
17 => 1,
];

switch ($testFile) {
case 'IncrementDecrementSpacingUnitTest.inc':
$errors[21] = 1;
$errors[23] = 1;
$errors[26] = 1;
$errors[27] = 1;
$errors[30] = 1;
$errors[31] = 1;
$errors[34] = 1;
$errors[37] = 1;

return $errors;

case 'IncrementDecrementSpacingUnitTest.js':
return [
5 => 1,
6 => 1,
8 => 1,
10 => 1,
13 => 1,
14 => 1,
16 => 1,
17 => 1,
];
return $errors;

default:
return [];
Expand Down

0 comments on commit 4aafcb3

Please sign in to comment.