There was an error while loading. Please reload this page.
1 parent 27bcd61 commit 4798a98Copy full SHA for 4798a98
1 file changed
src/Runner/EntityExpansionMarker.php
@@ -11,9 +11,7 @@ final class EntityExpansionMarker
11
12
public static function wrap(string $content): string
13
{
14
- return '<!--' . self::START . '-->'
15
- . $content
16
- . '<!--' . self::END . '-->';
+ return sprintf('<!--%s-->%s<!--%s-->', self::START, $content, self::END);
17
}
18
19
public static function contains(\DOMNode $node): bool
0 commit comments