
no_trailing_whitespace_in_string
¶There must be no trailing whitespace in strings.
Warning
Using this rule is risky.
Changing the whitespaces in strings might affect string comparisons and outputs.
--- Original
+++ New
@@ -1,3 +1,3 @@
-<?php $a = '
- foo
+<?php $a = '
+ foo
';
The rule is part of the following rule sets:
Using the @PSR12:risky rule set will enable the no_trailing_whitespace_in_string
rule.
Using the @PhpCsFixer:risky rule set will enable the no_trailing_whitespace_in_string
rule.
Using the @Symfony:risky rule set will enable the no_trailing_whitespace_in_string
rule.