There should not be a binary flag before strings.
--- Original
+++ New
@@ -1 +1 @@
-<?php $a = b'foo';
+<?php $a = 'foo';
--- Original
+++ New
@@ -1,3 +1,3 @@
-<?php $a = b<<<EOT
+<?php $a = <<<EOT
foo
EOT;
The rule is part of the following rule sets:
- @PhpCsFixer
- Using the @PhpCsFixer rule set will enable the
no_binary_string
rule. - @Symfony
- Using the @Symfony rule set will enable the
no_binary_string
rule.