|
@@ 93-95 (lines=3) @@
|
| 90 |
|
$this->outdent($phpcsFile, $prevIndex); |
| 91 |
|
|
| 92 |
|
for ($i = $stackPtr; $i <= $docBlockEndIndex; $i++) { |
| 93 |
|
if (!$this->isGivenKind(T_DOC_COMMENT_WHITESPACE, $tokens[$i]) || $tokens[$i]['column'] !== 1) { |
| 94 |
|
continue; |
| 95 |
|
} |
| 96 |
|
$this->outdent($phpcsFile, $i); |
| 97 |
|
} |
| 98 |
|
$phpcsFile->fixer->endChangeset(); |
|
@@ 120-122 (lines=3) @@
|
| 117 |
|
} |
| 118 |
|
|
| 119 |
|
for ($i = $stackPtr; $i <= $docBlockEndIndex; $i++) { |
| 120 |
|
if (!$this->isGivenKind(T_DOC_COMMENT_WHITESPACE, $tokens[$i]) || $tokens[$i]['column'] !== 1) { |
| 121 |
|
continue; |
| 122 |
|
} |
| 123 |
|
if ($diff < 0) { |
| 124 |
|
$this->indent($phpcsFile, $i, -$diff); |
| 125 |
|
} else { |