Skip to content

Commit a6c44bb

Browse files
dmason30github-actions[bot]
authored andcommitted
Fix styling
1 parent 5eeaf48 commit a6c44bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Collections/ConverterCollection.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public function convert(string $text): string
2121
return preg_replace_callback($pattern, fn ($match) => collect([
2222
'placeholder' => $match[1] ?? null,
2323
'htmlTag' => $match[2] ?? null,
24-
'replaceable' => $sorted->get($match[0]) ?: $match[0]
24+
'replaceable' => $sorted->get($match[0]) ?: $match[0],
2525
])->filter()->first(), $text);
2626
}
2727
}

0 commit comments

Comments
 (0)