Skip to content

Commit 5af0c01

Browse files
committed
chore: lint
1 parent f09f92a commit 5af0c01

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/SDK/SDK.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -167,13 +167,13 @@ public function __construct(Language $language, Spec $spec)
167167
$prefix = " * ";
168168
$prefixLength = strlen($prefix);
169169
$maxLineLength = 75 - $prefixLength;
170-
170+
171171
foreach ($value as $key => $line) {
172172
if (empty(trim($line))) {
173173
$value[$key] = $prefix;
174174
continue;
175175
}
176-
176+
177177
$wrapped = wordwrap($line, $maxLineLength, "\n" . $prefix, true);
178178
$value[$key] = $prefix . $wrapped;
179179
}

0 commit comments

Comments
 (0)