Skip to content

Commit

Permalink
Merge pull request #3 from kor2win/pint-pleasure
Browse files Browse the repository at this point in the history
fix: correct indentation for docblock comments.
  • Loading branch information
darkdarin authored Sep 14, 2024
2 parents 45012e5 + 91e38a2 commit 04078aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Helpers/IndentsHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ public static function preLine(string $content, string $fill): string
{
$lines = explode(PHP_EOL, $content);

return implode(PHP_EOL, array_map(fn(string $line) => empty(trim($line)) ? '' : $fill . $line, $lines));
return implode(PHP_EOL, array_map(fn(string $line) => empty(trim($fill . $line)) ? '' : $fill . $line, $lines));
}
}

0 comments on commit 04078aa

Please sign in to comment.