Skip to content
This repository was archived by the owner on Mar 6, 2022. It is now read-only.

Commit 2ed43ab

Browse files
committed
Fix CS
1 parent 4bd8f08 commit 2ed43ab

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/Util/TextFormat.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ public function indent(string $string, int $level = 0): string
2626
{
2727
if ($level < 0) {
2828
throw new RuntimeException(sprintf(
29-
'Level must be greater than or equal to 0, got "%s"', $level
29+
'Level must be greater than or equal to 0, got "%s"',
30+
$level
3031
));
3132
}
3233
$lines = TextUtil::lines($string);

0 commit comments

Comments
 (0)