Skip to content

Commit 1104426

Browse files
committed
minor #14089 CS: Binary operators should be arounded by at least one space (keradus)
This PR was merged into the 2.3 branch. Discussion ---------- CS: Binary operators should be arounded by at least one space | Q | A | ------------- | --- | Bug fix? | no | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | ? | Fixed tickets | N/A | License | MIT | Doc PR | N/A Update before upcoming changes on PHP CS Fixer 1.7 To keep fabbot.io happy ;) Commits ------- ec2cec6 CS: Binary operators should be arounded by at least one space
2 parents 72fc6ed + 3c2402f commit 1104426

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Loader/PoFileLoader.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ private function addMessage(array &$messages, array $item)
165165
end($plurals);
166166
$count = key($plurals);
167167
// Fill missing spots with '-'.
168-
$empties = array_fill(0, $count+1, '-');
168+
$empties = array_fill(0, $count + 1, '-');
169169
$plurals += $empties;
170170
ksort($plurals);
171171
$messages[stripcslashes($item['ids']['plural'])] = stripcslashes(implode('|', $plurals));

0 commit comments

Comments
 (0)