Skip to content

Commit 06dcb1d

Browse files
committed
Apply fixed review coderabbitai nitpick comments.
1 parent 3793896 commit 06dcb1d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/TestSupport.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ public static function invokeParentMethod(
173173
*/
174174
public static function normalizeLineEndings(string $line): string
175175
{
176-
return str_replace("\r\n", "\n", $line);
176+
return str_replace(["\r\n", "\r"], "\n", $line);
177177
}
178178

179179
/**

0 commit comments

Comments
 (0)