Skip to content

Commit da72d36

Browse files
committedOct 11, 2019
Additional fix for #2506
Slightly different fix for the second code snippet reported there. Uses startOfStatement instead of line unless it detects method chaining.
1 parent c11b324 commit da72d36

File tree

4 files changed

+38
-7
lines changed

4 files changed

+38
-7
lines changed
 

‎src/Standards/PEAR/Sniffs/Functions/FunctionCallSignatureSniff.php

+5-7
Original file line numberDiff line numberDiff line change
@@ -339,13 +339,11 @@ public function processMultiLineCall(File $phpcsFile, $stackPtr, $openBracket, $
339339
// call itself is, so we can work out how far to
340340
// indent the arguments.
341341
$first = $phpcsFile->findFirstOnLine(T_WHITESPACE, $stackPtr, true);
342-
if ($tokens[$first]['code'] === T_CONSTANT_ENCAPSED_STRING
343-
&& $tokens[($first - 1)]['code'] === T_CONSTANT_ENCAPSED_STRING
344-
) {
345-
// We are in a multi-line string, so find the start and use
346-
// the indent from there.
347-
$prev = $phpcsFile->findPrevious(T_CONSTANT_ENCAPSED_STRING, ($first - 2), null, true);
348-
$first = $phpcsFile->findFirstOnLine(Tokens::$emptyTokens, $prev, true);
342+
if ($tokens[$first]['code'] !== T_OBJECT_OPERATOR) {
343+
// This is not a chained method, so go back and look for the
344+
// start of the statement and take our indent from there.
345+
$start = $phpcsFile->findStartOfStatement($stackPtr, true);
346+
$first = $phpcsFile->findFirstOnLine(T_WHITESPACE, $start, true);
349347
}
350348

351349
$foundFunctionIndent = 0;

‎src/Standards/PEAR/Tests/Functions/FunctionCallSignatureUnitTest.inc

+15
Original file line numberDiff line numberDiff line change
@@ -442,3 +442,18 @@ function m()
442442
) . '
443443
' : '');
444444
}
445+
446+
class C
447+
{
448+
449+
public function m()
450+
{
451+
$a = [];
452+
$t =
453+
"SELECT * FROM t
454+
WHERE f IN(" . implode(
455+
",",
456+
$a
457+
) . ")";
458+
}
459+
}

‎src/Standards/PEAR/Tests/Functions/FunctionCallSignatureUnitTest.inc.fixed

+15
Original file line numberDiff line numberDiff line change
@@ -452,3 +452,18 @@ function m()
452452
) . '
453453
' : '');
454454
}
455+
456+
class C
457+
{
458+
459+
public function m()
460+
{
461+
$a = [];
462+
$t =
463+
"SELECT * FROM t
464+
WHERE f IN(" . implode(
465+
",",
466+
$a
467+
) . ")";
468+
}
469+
}

‎src/Standards/PEAR/Tests/Functions/FunctionCallSignatureUnitTest.php

+3
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,9 @@ public function getErrorList($testFile='FunctionCallSignatureUnitTest.inc')
119119
440 => 1,
120120
441 => 1,
121121
442 => 1,
122+
455 => 1,
123+
456 => 1,
124+
457 => 1,
122125
];
123126

124127
}//end getErrorList()

0 commit comments

Comments
 (0)
Please sign in to comment.