Skip to content

Latest commit

 

History

History
41 lines (30 loc) · 829 Bytes

line_ending.rst

File metadata and controls

41 lines (30 loc) · 829 Bytes

Rule line_ending

All PHP files must use same line ending.

Examples

Example #1

--- Original
+++ New
 <?php $b = " $a ^M
- 123"; $a = <<<TEST^M
-AAAAA ^M
- |^M
+ 123"; $a = <<<TEST
+AAAAA
+ |
 TEST;

Rule sets

The rule is part of the following rule sets:

@PSR12
Using the @PSR12 rule set will enable the line_ending rule.
@PSR2
Using the @PSR2 rule set will enable the line_ending rule.
@PhpCsFixer
Using the @PhpCsFixer rule set will enable the line_ending rule.
@Symfony
Using the @Symfony rule set will enable the line_ending rule.