Skip to content

Commit

Permalink
Various CS fix for consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandre-daubois committed Oct 3, 2024
1 parent 7bd8e52 commit 3fec76a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dumper/PoFileDumper.php
Original file line number Diff line number Diff line change
Expand Up @@ -100,9 +100,9 @@ private function getStandardRules(string $id): array
if (preg_match($intervalRegexp, $part)) {
// Explicit rule is not a standard rule.
return [];
} else {
$standardRules[] = $part;
}
}

$standardRules[] = $part;
}

return $standardRules;
Expand Down

0 comments on commit 3fec76a

Please sign in to comment.