Skip to content

Latest commit

 

History

History
38 lines (27 loc) · 803 Bytes

string_line_ending.rst

File metadata and controls

38 lines (27 loc) · 803 Bytes

Rule string_line_ending

All multi-line strings must use correct line ending.

Warning

Using this rule is risky.

Changing the line endings of multi-line strings might affect string comparisons and outputs.

Examples

Example #1

--- Original
+++ New
-<?php $a = 'my^M
+<?php $a = 'my
 multi
-line^M
+line
 string';^M

Rule sets

The rule is part of the following rule sets:

@PhpCsFixer:risky

Using the @PhpCsFixer:risky rule set will enable the string_line_ending rule.

@Symfony:risky

Using the @Symfony:risky rule set will enable the string_line_ending rule.