Skip to content

Commit 09b4294

Browse files
committed
CS fix
1 parent c459f5c commit 09b4294

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/MenuItem/SelectableItem.php

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,12 @@ public function getRows(MenuStyle $style, bool $selected = false) : array
6666

6767
if ($key === 0) {
6868
return $this->showItemExtra
69-
? sprintf('%s%s %s', $text, str_repeat(' ', $length - mb_strlen($row)), $this->style->getItemExtra())
69+
? sprintf(
70+
'%s%s %s',
71+
$text,
72+
str_repeat(' ', $length - mb_strlen($row)),
73+
$this->style->getItemExtra()
74+
)
7075
: $text;
7176
}
7277

0 commit comments

Comments
 (0)