Merge pull request #3508 from UFTimmy/patch-2

Fix regex to account for windows.
This commit is contained in:
kodiakhq[bot] 2020-06-10 18:52:46 +00:00 committed by GitHub
commit 8f995ca6b2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,5 +9,5 @@ final class SplitLine
/**
* @var string
*/
public const SPLIT_LINE = '#-----' . PHP_EOL . '#';
public const SPLIT_LINE = "#-----\r?\n#";
}