mirror of
https://github.com/elyby/php-code-style.git
synced 2024-12-22 13:09:50 +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);
|
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) {
|
protected function applyFix(SplFileInfo $file, Tokens $tokens) {
|
||||||
foreach ($tokens as $index => $token) {
|
foreach ($tokens as $index => $token) {
|
||||||
if (!$token->isGivenKind(self::STATEMENTS)) {
|
if (!$token->isGivenKind(self::STATEMENTS)) {
|
||||||
|
Loading…
Reference in New Issue
Block a user