Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 485 Bytes

heredoc_to_nowdoc.rst

File metadata and controls

28 lines (20 loc) · 485 Bytes

Rule heredoc_to_nowdoc

Convert heredoc to nowdoc where possible.

Examples

Example #1

--- Original
+++ New
-<?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.