Convert heredoc
to nowdoc
where possible.
--- Original
+++ New
@@ -1,3 +1,3 @@
-<?php $a = <<<"TEST"
+<?php $a = <<<'TEST'
Foo
TEST;
The rule is part of the following rule set:
- @PhpCsFixer
- Using the @PhpCsFixer rule set will enable the
heredoc_to_nowdoc
rule.