All multi-line strings must use correct line ending.
Changing the line endings of multi-line strings might affect string comparisons and outputs.
--- Original
+++ New
-<?php $a = 'my^M
+<?php $a = 'my
multi
-line^M
+line
string';^M
The rule is part of the following rule sets:
- Fixer class: PhpCsFixer\Fixer\StringNotation\StringLineEndingFixer
- Test class: PhpCsFixer\Tests\Fixer\StringNotation\StringLineEndingFixerTest
The test class defines officially supported behaviour. Each test case is a part of our backward compatibility promise.