Skip to content

Commit 3b690da

Browse files
committed
Code style fixed
1 parent 421fe04 commit 3b690da

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/NestableCollection.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,9 +99,9 @@ public function listsFlattened(string $column = 'title', BaseCollection $collect
9999
$indentChars = $indentChars ?: $this->indentChars;
100100
foreach ($collection as $item) {
101101
if ($parentString) {
102-
$item_string = ($parentString === true) ? $item->{$column} : $parentString.$indentChars.$item->{$column};
102+
$item_string = ($parentString === true) ? $item->{$column} : $parentString . $indentChars . $item->{$column};
103103
} else {
104-
$item_string = str_repeat($indentChars, $level).$item->{$column};
104+
$item_string = str_repeat($indentChars, $level) . $item->{$column};
105105
}
106106

107107
$flattened[$item->id] = $item_string;

0 commit comments

Comments
 (0)