Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 504 Bytes

heredoc_to_nowdoc.rst

File metadata and controls

29 lines (21 loc) · 504 Bytes

Rule heredoc_to_nowdoc

Convert heredoc to nowdoc where possible.

Examples

Example #1

--- Original
+++ New
@@ -1,3 +1,3 @@
-<?php $a = <<<"TEST"
+<?php $a = <<<'TEST'
 Foo
 TEST;

Rule sets

The rule is part of the following rule set:

@PhpCsFixer
Using the @PhpCsFixer rule set will enable the heredoc_to_nowdoc rule.