mirror of
https://github.com/elyby/php-code-style.git
synced 2024-11-06 00:04:41 +05:30
Adjust priority for LineBreakAfterStatementsFixer
This commit is contained in:
parent
824cf6c1f1
commit
2480f7ba46
@ -86,6 +86,14 @@ class Foo
|
||||
return $tokens->isAnyTokenKindsFound(self::STATEMENTS);
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function getPriority() {
|
||||
// for the best result should be run after the BracesFixer
|
||||
return -26;
|
||||
}
|
||||
|
||||
protected function applyFix(SplFileInfo $file, Tokens $tokens) {
|
||||
foreach ($tokens as $index => $token) {
|
||||
if (!$token->isGivenKind(self::STATEMENTS)) {
|
||||
|
Loading…
Reference in New Issue
Block a user