Fixes #9. Add space before next meaningful line of code and skip comments

This commit is contained in:
ErickSkrauch
2023-03-22 20:41:04 +01:00
parent 22dcb418fb
commit 6e9d815a1f
3 changed files with 11 additions and 2 deletions

View File

@@ -26,7 +26,7 @@ final class LineBreakAfterStatementsFixer extends AbstractFixer implements White
/**
* There is no 'do', 'cause the processing of the 'while' also includes do {} while (); construction
*/
public const STATEMENTS = [
private const STATEMENTS = [
T_IF,
T_SWITCH,
T_FOR,
@@ -93,7 +93,7 @@ class Foo
}
$endStatementIndex = $this->findStatementEnd($tokens, $index);
$nextStatementIndex = $tokens->getNextNonWhitespace($endStatementIndex);
$nextStatementIndex = $tokens->getNextMeaningfulToken($endStatementIndex);
if ($nextStatementIndex === null) {
continue;
}