Skip to content

Commit 4798a98

Browse files
committed
chore: formatting
1 parent 27bcd61 commit 4798a98

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

src/Runner/EntityExpansionMarker.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,7 @@ final class EntityExpansionMarker
1111

1212
public static function wrap(string $content): string
1313
{
14-
return '<!--' . self::START . '-->'
15-
. $content
16-
. '<!--' . self::END . '-->';
14+
return sprintf('<!--%s-->%s<!--%s-->', self::START, $content, self::END);
1715
}
1816

1917
public static function contains(\DOMNode $node): bool

0 commit comments

Comments
 (0)