Skip to content

Commit

Permalink
Increase ordered_interfaces fixer priority
Browse files Browse the repository at this point in the history
  • Loading branch information
erickskrauch committed Jan 18, 2024
1 parent cff91c0 commit c457cab
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/Fixer/ClassNotation/OrderedInterfacesFixer.php
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,11 @@ public function getDefinition(): FixerDefinitionInterface
);
}

public function getPriority(): int
{
return 75;
}

public function isCandidate(Tokens $tokens): bool
{
return $tokens->isTokenKindFound(T_IMPLEMENTS)
Expand Down

0 comments on commit c457cab

Please sign in to comment.