Fork me on GitHub
a Sensio Labs Product

I ate three cookies πŸͺ (v3.40.2) edition

Rule no_binary_stringΒΆ

There should not be a binary flag before strings.

ExamplesΒΆ

Example #1ΒΆ

--- Original
+++ New
-<?php $a = b'foo';
+<?php $a = 'foo';

Example #2ΒΆ

--- Original
+++ New
-<?php $a = b<<<EOT
+<?php $a = <<<EOT
 foo
 EOT;

Rule setsΒΆ

The rule is part of the following rule sets:

Source classΒΆ

PhpCsFixer\Fixer\StringNotation\NoBinaryStringFixer