Skip to content

Commit a62c2f8

Browse files
authored
Merge pull request #957 from PHPCSStandards/feature/generic-scopeindent-debug-start-on-new-line
Generic/ScopeIndent: start debug info on new line
2 parents f259845 + e87a3f9 commit a62c2f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Standards/Generic/Sniffs/WhiteSpace/ScopeIndentSniff.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ public function process(File $phpcsFile, $stackPtr)
161161

162162
if ($this->debug === true) {
163163
$line = $tokens[$stackPtr]['line'];
164-
echo "Start with token $stackPtr on line $line with indent $currentIndent".PHP_EOL;
164+
echo PHP_EOL."Start with token $stackPtr on line $line with indent $currentIndent".PHP_EOL;
165165
}
166166

167167
if (empty($this->ignoreIndentation) === true) {

0 commit comments

Comments
 (0)