We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2e3a010 + dfc265d commit 67c3859Copy full SHA for 67c3859
src/Reports/Info.php
@@ -116,7 +116,9 @@ public function generate(
116
117
// Length of the total string, plus however many
118
// thousands separators there are.
119
- $countWidth = (strlen($totalCount) + floor($countWidth / 3));
+ $countWidth = strlen($totalCount);
120
+ $nrOfThousandSeps = floor($countWidth / 3);
121
+ $countWidth += $nrOfThousandSeps;
122
123
// Account for 'total' line.
124
$valueWidth = max(5, $valueWidth);
0 commit comments