diff --git a/src/Services/Formatter.php b/src/Services/Formatter.php index ba2fcd0..2820877 100644 --- a/src/Services/Formatter.php +++ b/src/Services/Formatter.php @@ -50,7 +50,7 @@ public function raw(array $array, int $pad = 1): string protected function pad(string $value, int $pad = 1, $type = STR_PAD_LEFT): string { $pad += $type === STR_PAD_LEFT - ? mb_strlen($value) + ? strlen($value) : 2; return str_pad($value, $pad, ' ', $type);